mirror of
https://github.com/game-ci/unity-test-runner.git
synced 2026-02-04 02:43:19 +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
227 B
TypeScript
10 lines
227 B
TypeScript
import Output from './output';
|
|
|
|
describe('Output', () => {
|
|
describe('setArtifactsPath', () => {
|
|
it('does not throw', async () => {
|
|
await expect(Output.setArtifactsPath('')).resolves.not.toThrow();
|
|
});
|
|
});
|
|
});
|