Skip to content

Commit

Permalink
Skip create-next-app tests
Browse files Browse the repository at this point in the history
  • Loading branch information
timneutkens committed May 16, 2024
1 parent b8b9141 commit 5f872ec
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion test/integration/create-next-app/examples.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
useTempDir,
} from './utils'

describe('create-next-app --example', () => {
describe.skip('create-next-app --example', () => {
let nextInstall: Awaited<ReturnType<typeof createNextInstall>>
beforeAll(async () => {
nextInstall = await createNextInstall({
Expand Down
2 changes: 1 addition & 1 deletion test/integration/create-next-app/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ beforeAll(async () => {
})
})

describe('create-next-app', () => {
describe.skip('create-next-app', () => {
it('should not create if the target directory is not empty', async () => {
await useTempDir(async (cwd) => {
const projectName = 'non-empty-dir'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ beforeAll(async () => {
})
})

describe('create-next-app with package manager bun', () => {
describe.skip('create-next-app with package manager bun', () => {
it('should use bun for --use-bun flag', async () => {
await useTempDir(async (cwd) => {
const projectName = 'use-bun'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ beforeAll(async () => {
})
})

describe('create-next-app with package manager npm', () => {
describe.skip('create-next-app with package manager npm', () => {
it('should use npm for --use-npm flag', async () => {
await useTempDir(async (cwd) => {
const projectName = 'use-npm'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ beforeEach(async () => {
.catch(() => command('npm', ['i', '-g', 'pnpm']))
})

describe('create-next-app with package manager pnpm', () => {
describe.skip('create-next-app with package manager pnpm', () => {
it('should use pnpm for --use-pnpm flag', async () => {
await useTempDir(async (cwd) => {
const projectName = 'use-pnpm'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ beforeEach(async () => {
.catch(() => command('npm', ['i', '-g', 'yarn']))
})

describe('create-next-app with package manager yarn', () => {
describe.skip('create-next-app with package manager yarn', () => {
it('should use yarn for --use-yarn flag', async () => {
await useTempDir(async (cwd) => {
const projectName = 'use-yarn'
Expand Down
2 changes: 1 addition & 1 deletion test/integration/create-next-app/prompts.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ beforeAll(async () => {
// ).get('next')
})

describe('create-next-app prompts', () => {
describe.skip('create-next-app prompts', () => {
it('should prompt user for choice if directory name is absent', async () => {
await useTempDir(async (cwd) => {
const projectName = 'no-dir-name'
Expand Down
2 changes: 1 addition & 1 deletion test/integration/create-next-app/templates/app.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ beforeAll(async () => {
// ).get('next')
})

describe('create-next-app --app (App Router)', () => {
describe.skip('create-next-app --app (App Router)', () => {
it('should create JavaScript project with --js flag', async () => {
await useTempDir(async (cwd) => {
const projectName = 'app-js'
Expand Down
2 changes: 1 addition & 1 deletion test/integration/create-next-app/templates/pages.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ beforeAll(async () => {
// ).get('next')
})

describe('create-next-app --no-app (Pages Router)', () => {
describe.skip('create-next-app --no-app (Pages Router)', () => {
it('should create JavaScript project with --js flag', async () => {
await useTempDir(async (cwd) => {
const projectName = 'pages-js'
Expand Down

0 comments on commit 5f872ec

Please sign in to comment.