Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add typechecking test for all entrypoints #64478

Merged
merged 1 commit into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions test/production/typescript-basic/typechecking.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import * as childProcess from 'child_process'
import path from 'path'
import { FileRef, nextTestSetup } from 'e2e-utils'

describe('typechecking', () => {
const { next } = nextTestSetup({
files: new FileRef(path.join(__dirname, 'typechecking')),
skipStart: true,
})

it('should typecheck', async () => {
const { status, stdout } = childProcess.spawnSync(
'pnpm',
['tsc', '--project', 'tsconfig.json', '--skipLibCheck', 'false'],
{
cwd: next.testDir,
encoding: 'utf-8',
}
)

if (status !== 0) {
// Piped output is incomplete and the format barely useable.
// Printing it as a last resort in case it's not reproducible locally.
// Best to NEXT_TEST_SKIP_CLEANUP=1 this test and run the command in the app localy.
throw new Error('Typecheck failed: \n' + stdout)
}
})
})
1 change: 1 addition & 0 deletions test/production/typescript-basic/typechecking/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
!next-env.d.ts
25 changes: 25 additions & 0 deletions test/production/typescript-basic/typechecking/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import 'next/amp'
Copy link
Member

@huozhi huozhi Apr 15, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this file is :interesting: 👍

import 'next/app'
// FIXME
// import 'next/babel';
import 'next/cache'
import 'next/client'
import 'next/config'
import 'next/constants'
import 'next/document'
import 'next/dynamic'
import 'next/error'
import 'next/head'
import 'next/headers'
import 'next/image'
import 'next'
// TODO @jest/types is an undeclared peer dependecy
// import 'next/jest';
import 'next/link'
import 'next/navigation'
import 'next/og'
import 'next/router'
import 'next/script'
import 'next/server'
// FIXME
// import 'next/web-vitals';
5 changes: 5 additions & 0 deletions test/production/typescript-basic/typechecking/next-env.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
6 changes: 6 additions & 0 deletions test/production/typescript-basic/typechecking/next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/**
* @type {import('next').NextConfig}
*/
const nextConfig = {}

module.exports = nextConfig
26 changes: 26 additions & 0 deletions test/production/typescript-basic/typechecking/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": false,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}