summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Fred K. Schott <fkschott@gmail.com> 2021-03-22 23:06:25 -0700
committerGravatar Fred K. Schott <fkschott@gmail.com> 2021-03-22 23:06:25 -0700
commit3f16550765cccee0de8f2f6e5451bf41aec13601 (patch)
tree554ea8f7ea80e5106d33bd83678d9458d5d285c7
parent799db34d552adbc275b11c65a1e89e58da02cd05 (diff)
downloadastro-3f16550765cccee0de8f2f6e5451bf41aec13601.tar.gz
astro-3f16550765cccee0de8f2f6e5451bf41aec13601.tar.zst
astro-3f16550765cccee0de8f2f6e5451bf41aec13601.zip
fix broken test
-rw-r--r--test/snowpack-integration.test.js2
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) {