unity-builder/src/model/unity.test.js
2020-01-27 23:15:26 +01:00

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');
});
});
});