mirror of
https://github.com/game-ci/unity-test-runner.git
synced 2026-02-03 10:19:08 +08:00
17 lines
428 B
TypeScript
17 lines
428 B
TypeScript
import Action from './action';
|
|
import Docker from './docker';
|
|
|
|
describe('Docker', () => {
|
|
it.skip('runs', async () => {
|
|
const image = 'unity-builder:2022.3.7f1-webgl';
|
|
const parameters = {
|
|
workspace: Action.rootFolder,
|
|
projectPath: `${Action.rootFolder}/test-project`,
|
|
buildName: 'someBuildName',
|
|
buildsPath: 'build',
|
|
method: '',
|
|
};
|
|
await Docker.run(image, parameters);
|
|
});
|
|
});
|