diff options
author | 2022-01-11 12:59:06 -0600 | |
---|---|---|
committer | 2022-01-11 12:59:06 -0600 | |
commit | b21dd19cb6773282aaa0eac6e5e61b92bcb85836 (patch) | |
tree | 083a4c669e5e753a7cc28e7477b5fa38a5d5e53f /scripts/smoke/index.js | |
parent | 1007497297769455d41e23f48dfdbec90b403f2e (diff) | |
download | astro-b21dd19cb6773282aaa0eac6e5e61b92bcb85836.tar.gz astro-b21dd19cb6773282aaa0eac6e5e61b92bcb85836.tar.zst astro-b21dd19cb6773282aaa0eac6e5e61b92bcb85836.zip |
chore: remove www (#2361)
Diffstat (limited to 'scripts/smoke/index.js')
-rw-r--r-- | scripts/smoke/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/smoke/index.js b/scripts/smoke/index.js index d5412adc0..823e9edfa 100644 --- a/scripts/smoke/index.js +++ b/scripts/smoke/index.js @@ -12,7 +12,7 @@ export default async function run() { .readdirSync(examplesUrl) .map((filename) => new URL(filename, examplesUrl)) .filter((fileUrl) => fs.statSync(fileUrl).isDirectory()); - const allProjectsToTest = [...examplesToTest, new URL('../../www', import.meta.url), new URL('../../docs', import.meta.url)]; + const allProjectsToTest = [...examplesToTest, new URL('../../docs', import.meta.url)]; console.log(''); for (const projectToTest of allProjectsToTest) { |