diff options
author | 2021-03-22 23:06:25 -0700 | |
---|---|---|
committer | 2021-03-22 23:06:25 -0700 | |
commit | 3f16550765cccee0de8f2f6e5451bf41aec13601 (patch) | |
tree | 554ea8f7ea80e5106d33bd83678d9458d5d285c7 | |
parent | 799db34d552adbc275b11c65a1e89e58da02cd05 (diff) | |
download | astro-3f16550765cccee0de8f2f6e5451bf41aec13601.tar.gz astro-3f16550765cccee0de8f2f6e5451bf41aec13601.tar.zst astro-3f16550765cccee0de8f2f6e5451bf41aec13601.zip |
fix broken test
-rw-r--r-- | test/snowpack-integration.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/snowpack-integration.test.js b/test/snowpack-integration.test.js index e420b043a..c851e8bdb 100644 --- a/test/snowpack-integration.test.js +++ b/test/snowpack-integration.test.js @@ -30,7 +30,7 @@ SnowpackDev.before(async () => { }); SnowpackDev.after(async () => { - await runtime.shutdown(); + await runtime && runtime.shutdown(); }); async function* allPageFiles(root) { |