unity-test-runner/src/model/output.test.ts

10 lines
227 B
TypeScript
Raw Normal View History

2020-01-29 21:22:26 +00:00
import Output from './output';
describe('Output', () => {
describe('setArtifactsPath', () => {
it('does not throw', async () => {
await expect(Output.setArtifactsPath('')).resolves.not.toThrow();
2020-01-29 21:22:26 +00:00
});
});
});