mirror of
https://github.com/game-ci/unity-test-runner.git
synced 2026-01-29 14:39:33 +08:00
10 lines
225 B
JavaScript
10 lines
225 B
JavaScript
import Output from './output';
|
|
|
|
describe('Output', () => {
|
|
describe('setArtifactsPath', () => {
|
|
it('does not throw', async () => {
|
|
await expect(Output.setArtifactsPath()).resolves.not.toThrow();
|
|
});
|
|
});
|
|
});
|