mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-07 20:35:33 -04:00

* avoid building a custom image * fix: remove unnecessary double-dash * Rebuild with -- fix * linting * Remove unused variable * support windows as well * Fix -- command not found * Fix unused import, remove docker build test * no dockerfile anymore Co-authored-by: Webber Takken <webber.nl@gmail.com>
34 lines
960 B
TypeScript
34 lines
960 B
TypeScript
import path from 'path';
|
|
import fs from 'fs';
|
|
import Action from './action';
|
|
|
|
describe('Action', () => {
|
|
describe('compatibility check', () => {
|
|
it('throws for anything other than linux, windows, or mac', () => {
|
|
switch (process.platform) {
|
|
case 'linux':
|
|
case 'win32':
|
|
case 'darwin':
|
|
expect(() => Action.checkCompatibility()).not.toThrow();
|
|
break;
|
|
default:
|
|
expect(() => Action.checkCompatibility()).toThrow();
|
|
}
|
|
});
|
|
});
|
|
|
|
it('returns the root folder of the action', () => {
|
|
const { rootFolder, canonicalName } = Action;
|
|
|
|
expect(path.basename(rootFolder)).toStrictEqual(canonicalName);
|
|
expect(fs.existsSync(rootFolder)).toStrictEqual(true);
|
|
});
|
|
|
|
it('returns the action folder', () => {
|
|
const { actionFolder } = Action;
|
|
|
|
expect(path.basename(actionFolder)).toStrictEqual('dist');
|
|
expect(fs.existsSync(actionFolder)).toStrictEqual(true);
|
|
});
|
|
});
|