mirror of
https://github.com/game-ci/unity-test-runner.git
synced 2026-01-29 06:20:07 +08:00
* Modifying js files to account for win support * Added new powershell scripts to support windows invocation * Fixed undefined error in stack trace logic * Added new func for resolving image tag default * Changed structure of docker.js to match new standard
30 lines
904 B
TypeScript
30 lines
904 B
TypeScript
import Action from './action';
|
|
import fs from 'fs';
|
|
import path from 'path';
|
|
|
|
describe('Action', () => {
|
|
describe('compatibility check', () => {
|
|
it('throws for anything other than linux or windows', () => {
|
|
if (process.platform !== 'linux' && process.platform !== 'win32') {
|
|
expect(() => Action.checkCompatibility()).toThrow();
|
|
} else {
|
|
expect(() => Action.checkCompatibility()).not.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);
|
|
});
|
|
});
|