mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-07 20:35:33 -04:00
14 lines
308 B
JavaScript
14 lines
308 B
JavaScript
import Unity from './unity';
|
|
|
|
describe('Unity', () => {
|
|
describe('libraryFolder', () => {
|
|
it('does not throw', () => {
|
|
expect(() => Unity.libraryFolder).not.toThrow();
|
|
});
|
|
|
|
it('returns a string', () => {
|
|
expect(typeof Unity.libraryFolder).toStrictEqual('string');
|
|
});
|
|
});
|
|
});
|