mirror of
https://github.com/game-ci/unity-activate
synced 2026-01-29 06:20:06 +08:00
* Upgrade to using typescript instead of javascript and use game-ci images instead of gableroux images * Fix errors * Update bash script * Fix test * Remove test * Add versioning * Update husky * Update husky * Update husky * Update package.json * Update husky and image-tag * Use 'yarn lint-staged' instead of 'npx lint-staged' * Update entrypoint.sh
38 lines
1.0 KiB
TypeScript
38 lines
1.0 KiB
TypeScript
import Platform from './platform';
|
|
|
|
describe('Platform', () => {
|
|
describe('default', () => {
|
|
it('does not throw', () => {
|
|
expect(() => Platform.default).not.toThrow();
|
|
});
|
|
|
|
it('returns a string', () => {
|
|
expect(typeof Platform.default).toStrictEqual('string');
|
|
});
|
|
|
|
it('returns a platform', () => {
|
|
expect(Object.values(Platform.types)).toContain(Platform.default);
|
|
});
|
|
});
|
|
|
|
describe('isWindows', () => {
|
|
it('returns true for windows', () => {
|
|
expect(Platform.isWindows(Platform.types.StandaloneWindows64)).toStrictEqual(true);
|
|
});
|
|
|
|
it('returns false for MacOS', () => {
|
|
expect(Platform.isWindows(Platform.types.StandaloneOSX)).toStrictEqual(false);
|
|
});
|
|
});
|
|
|
|
describe('isAndroid', () => {
|
|
it('returns true for Android', () => {
|
|
expect(Platform.isAndroid(Platform.types.Android)).toStrictEqual(true);
|
|
});
|
|
|
|
it('returns false for Windows', () => {
|
|
expect(Platform.isAndroid(Platform.types.StandaloneWindows64)).toStrictEqual(false);
|
|
});
|
|
});
|
|
});
|