From 3f16550765cccee0de8f2f6e5451bf41aec13601 Mon Sep 17 00:00:00 2001 From: "Fred K. Schott" Date: Mon, 22 Mar 2021 23:06:25 -0700 Subject: [PATCH] fix broken test --- test/snowpack-integration.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {