docker: set default standalone

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2023-01-23 14:48:00 +01:00
parent fe07aec685
commit fdc8b5d37b
4 changed files with 15 additions and 21 deletions

View File

@@ -78,7 +78,9 @@ describe('hasLocalOrTarExporter', () => {
describe('isAvailable', () => {
it('docker cli', async () => {
const execSpy = jest.spyOn(exec, 'getExecOutput');
const buildx = new Buildx();
const buildx = new Buildx({
standalone: false
});
await buildx.isAvailable();
// eslint-disable-next-line jest/no-standalone-expect
expect(execSpy).toHaveBeenCalledWith(`docker`, ['buildx'], {

View File

@@ -19,7 +19,7 @@ describe('isAvailable', () => {
describe('info', () => {
it('standard', () => {
const execSpy = jest.spyOn(exec, 'exec');
Docker.info();
Docker.info(false);
expect(execSpy).toHaveBeenCalledWith(`docker`, ['version'], {
failOnStdErr: false
});