We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33b559a commit a87a800Copy full SHA for a87a800
packages/compass-smoke-tests/src/tests/auto-update-to.ts
@@ -42,6 +42,7 @@ export async function testAutoUpdateTo(context: SmokeTestsContext) {
42
43
try {
44
process.env.PORT = '0'; // dynamic port
45
+ process.env.UPDATE_CHECKER_ALLOW_DOWNGRADES = 'true';
46
47
if (channel === 'dev') {
48
process.env.DEV_RELEASE = JSON.stringify({
@@ -95,6 +96,7 @@ export async function testAutoUpdateTo(context: SmokeTestsContext) {
95
96
server.close();
97
delete process.env.DEV_RELEASE;
98
delete process.env.PUBLISHED_RELEASES;
99
+ delete process.env.UPDATE_CHECKER_ALLOW_DOWNGRADES;
100
}
101
} finally {
102
await uninstall();
0 commit comments