diff options
author | 2022-06-28 10:24:54 -0500 | |
---|---|---|
committer | 2022-06-28 10:24:54 -0500 | |
commit | 8829cc7ab661fb90d05a3697040a370d710e66fd (patch) | |
tree | bb0579c21da1e7944464acde22d40691a5754d99 /packages/create-astro/test/install-step.test.js | |
parent | a59a27eb0c098c23bdc1684a1c4284d517d3dc17 (diff) | |
download | astro-8829cc7ab661fb90d05a3697040a370d710e66fd.tar.gz astro-8829cc7ab661fb90d05a3697040a370d710e66fd.tar.zst astro-8829cc7ab661fb90d05a3697040a370d710e66fd.zip |
Disable problematic `create-astro` test (#3746)
* chore(test): disable problematic create-astro test
* chore: fix skip
Co-authored-by: Nate Moore <nate@astro.build>
Diffstat (limited to 'packages/create-astro/test/install-step.test.js')
-rw-r--r-- | packages/create-astro/test/install-step.test.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/create-astro/test/install-step.test.js b/packages/create-astro/test/install-step.test.js index 3f1dea4a9..78d014257 100644 --- a/packages/create-astro/test/install-step.test.js +++ b/packages/create-astro/test/install-step.test.js @@ -6,7 +6,8 @@ import os from 'os'; const FAKE_PACKAGE_MANAGER = 'banana'; let initialEnvValue = null; -describe('[create-astro] install', function () { +// TODO: enable test, it was consistently timing out in CI +describe.skip('[create-astro] install', function () { this.timeout(timeout); let tempDir = ''; beforeEach(async () => { |