diff options
Diffstat (limited to 'test/snowpack-integration.test.js')
-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 033f5587d..ebe21f274 100644 --- a/test/snowpack-integration.test.js +++ b/test/snowpack-integration.test.js @@ -52,7 +52,7 @@ async function* allPageFiles(root) { async function* allPages(root) { for await (let fileURL of allPageFiles(root)) { - let bare = fileURL.pathname.replace(/\.(hmx|md)$/, '').replace(/index$/, ''); + let bare = fileURL.pathname.replace(/\.(astro|md)$/, '').replace(/index$/, ''); yield '/' + pathRelative(root.pathname, bare); } |