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 393c88c commit dffeb75Copy full SHA for dffeb75
packages/compass-smoke-tests/src/tests/auto-update-to.ts
@@ -57,11 +57,13 @@ export async function testAutoUpdateTo(context: SmokeTestsContext) {
57
bucket_key_prefix: context.bucketKeyPrefix,
58
});
59
} else {
60
- process.env.PUBLISHED_RELEASES = JSON.stringify({
61
- name: version,
62
- body: version,
63
- bucket_key_prefix: context.bucketKeyPrefix,
64
- });
+ process.env.PUBLISHED_RELEASES = JSON.stringify([
+ {
+ name: version,
+ body: version,
+ bucket_key_prefix: context.bucketKeyPrefix,
65
+ },
66
+ ]);
67
}
68
69
const server = await startAutoUpdateServer();
0 commit comments