diff options
author | 2025-06-05 16:18:32 +0200 | |
---|---|---|
committer | 2025-06-05 16:18:32 +0200 | |
commit | 61e779486fffd77eed4b95eec0ab5fcf106dd2d5 (patch) | |
tree | 85518de42eea4004e4c891676bce52836de06461 /packages/db/test/basics.test.js | |
parent | 0947a69192ad6820970902c7c951fb0cf31fcf4b (diff) | |
download | astro-feat/remove-studio.tar.gz astro-feat/remove-studio.tar.zst astro-feat/remove-studio.zip |
feat: remove studiofeat/remove-studio
Diffstat (limited to 'packages/db/test/basics.test.js')
-rw-r--r-- | packages/db/test/basics.test.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/db/test/basics.test.js b/packages/db/test/basics.test.js index 8d6167447..02f5bce37 100644 --- a/packages/db/test/basics.test.js +++ b/packages/db/test/basics.test.js @@ -181,13 +181,13 @@ describe('astro:db', () => { before(async () => { clearEnvironment(); - process.env.ASTRO_STUDIO_APP_TOKEN = 'some token'; + process.env.ASTRO_DB_APP_TOKEN = 'some token'; remoteDbServer = await setupRemoteDbServer(fixture.config); await fixture.build(); }); after(async () => { - process.env.ASTRO_STUDIO_APP_TOKEN = ''; + process.env.ASTRO_DB_APP_TOKEN = ''; await remoteDbServer?.stop(); }); |