Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/e2e/tests/toml-config-invalid.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/e2e/tests/toml-config.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading