diff --git a/packages/e2e/tests/toml-config-invalid.spec.ts b/packages/e2e/tests/toml-config-invalid.spec.ts index f0bee68d644..0997d9d81c8 100644 --- a/packages/e2e/tests/toml-config-invalid.spec.ts +++ b/packages/e2e/tests/toml-config-invalid.spec.ts @@ -28,7 +28,7 @@ test.describe('TOML config invalid', () => { JSON.stringify({name: `invalid-${label}`, version: '1.0.0', private: true}), ) - const result = await cli.exec(['app', 'deploy', '--path', appDir, '--force'], { + const result = await cli.exec(['app', 'deploy', '--path', appDir, '--allow-updates', '--allow-deletes'], { timeout: CLI_TIMEOUT.medium, }) const output = result.stdout + result.stderr diff --git a/packages/e2e/tests/toml-config.spec.ts b/packages/e2e/tests/toml-config.spec.ts index 8d1fa0c65cd..e20fce43cf1 100644 --- a/packages/e2e/tests/toml-config.spec.ts +++ b/packages/e2e/tests/toml-config.spec.ts @@ -29,7 +29,7 @@ test.describe('TOML config regression', () => { // Overwrite with fully populated TOML fixture (injects the real client_id) injectFixtureToml(appDir, FIXTURE_TOML, appName) - const result = await cli.exec(['app', 'deploy', '--path', appDir, '--force'], { + const result = await cli.exec(['app', 'deploy', '--path', appDir, '--allow-updates', '--allow-deletes'], { timeout: CLI_TIMEOUT.long, }) const output = result.stdout + result.stderr