Skip to content

Commit

Permalink
chore: fix skip
Browse files Browse the repository at this point in the history
  • Loading branch information
natemoo-re committed Jun 28, 2022
1 parent 5633857 commit 2810318
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/create-astro/test/install-step.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 () => {
Expand All @@ -20,8 +21,7 @@ describe('[create-astro] install', function () {
process.env.npm_config_user_agent = initialEnvValue;
});

// TODO: enable test, it was consistently timing out in CI
it.skip('should respect package manager in prompt', function () {
it('should respect package manager in prompt', function () {
const { stdout, stdin } = setup([tempDir]);
return promiseWithTimeout((resolve) => {
const seen = new Set();
Expand Down

0 comments on commit 2810318

Please sign in to comment.