summaryrefslogtreecommitdiff
path: root/test/snowpack-integration.test.js
diff options
context:
space:
mode:
authorGravatar Fred K. Schott <fkschott@gmail.com> 2021-03-24 16:01:28 -0700
committerGravatar GitHub <noreply@github.com> 2021-03-24 16:01:28 -0700
commita72ab10c623022860691d6a095b74dea70cc6f69 (patch)
tree0d94c752ae0d63027ec91a1fbf745a93745be6ee /test/snowpack-integration.test.js
parent3c24faa8cab428b17ba2f8e083f5296b1b931fe1 (diff)
downloadastro-a72ab10c623022860691d6a095b74dea70cc6f69.tar.gz
astro-a72ab10c623022860691d6a095b74dea70cc6f69.tar.zst
astro-a72ab10c623022860691d6a095b74dea70cc6f69.zip
Redesign pages, remove layout nesting (#24)
* wip * new svelte-style prop declaration is working * got it working! * revert h changes * format * style lang update
Diffstat (limited to 'test/snowpack-integration.test.js')
-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 ebe21f274..e14d94a73 100644
--- a/test/snowpack-integration.test.js
+++ b/test/snowpack-integration.test.js
@@ -72,7 +72,7 @@ SnowpackDev('Can load every page', async () => {
}
const result = await runtime.load(pathname);
if (result.statusCode === 500) {
- failed.push(result);
+ failed.push({...result, pathname});
continue;
}
assert.equal(result.statusCode, 200, `Loading ${pathname}`);