diff options
author | 2024-04-10 15:38:17 +0100 | |
---|---|---|
committer | 2024-04-10 15:38:17 +0100 | |
commit | 440681e7b74511a17b152af0fd6e0e4dc4014025 (patch) | |
tree | 288d764255410b8cb19790cc1aaf9daca8190f31 /scripts/cmd/test.js | |
parent | 9e14a78cb05667af9821948c630786f74680090d (diff) | |
download | astro-440681e7b74511a17b152af0fd6e0e4dc4014025.tar.gz astro-440681e7b74511a17b152af0fd6e0e4dc4014025.tar.zst astro-440681e7b74511a17b152af0fd6e0e4dc4014025.zip |
feat(i18n): manual routing (#10193)
* feat(i18n): manual routing
* one more function
* different typing
* tests
* fix merge
* throw error for missing middleware
* rename function
* fix conflicts
* lock file update
* fix options, error thrown and added tests
* rebase
* add tests
* docs
* lock file black magic
* increase timeout?
* fix regression
* merge conflict
* add changeset
* chore: apply suggestions
* apply suggestion
* Update .changeset/little-hornets-give.md
Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com>
* chore: address feedback
* fix regression of last commit
* update name
* add comments
* fix regression
* remove unused code
* Apply suggestions from code review
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
* chore: update reference
* Update packages/astro/src/@types/astro.ts
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
* chore: improve types
* fix regression in tests
* apply Sarah's suggestion
---------
Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com>
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
Diffstat (limited to 'scripts/cmd/test.js')
-rw-r--r-- | scripts/cmd/test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cmd/test.js b/scripts/cmd/test.js index 87b34987a..04f02f73a 100644 --- a/scripts/cmd/test.js +++ b/scripts/cmd/test.js @@ -7,7 +7,7 @@ import arg from 'arg'; import glob from 'tiny-glob'; const isCI = !!process.env.CI; -const defaultTimeout = isCI ? 1200000 : 600000; +const defaultTimeout = isCI ? 1400000 : 600000; export default async function test() { const args = arg({ |