mirror of
https://github.com/game-ci/unity-test-runner.git
synced 2026-01-29 14:39:33 +08:00
* Refactor to typescript * Fix platform and workflow * Fix workflow and platform * Update husky and image-tag * Use 'yarn lint-staged' instead of 'npx lint-staged'
10 lines
239 B
TypeScript
10 lines
239 B
TypeScript
import ResultsCheck from './results-check';
|
|
|
|
describe('ResultsCheck', () => {
|
|
describe('createCheck', () => {
|
|
it('throws for missing input', () => {
|
|
expect(() => ResultsCheck.createCheck('', '', '')).rejects;
|
|
});
|
|
});
|
|
});
|