next.test.ts — tailwindcss Source File
Architecture documentation for next.test.ts, a typescript file in the tailwindcss codebase. 6 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 684c0a17_ffb1_1e9d_8832_0fd2d71d0d2d["next.test.ts"] 3cb1ca41_4f73_cf46_eb6b_7c51239e3e65["utils.ts"] 684c0a17_ffb1_1e9d_8832_0fd2d71d0d2d --> 3cb1ca41_4f73_cf46_eb6b_7c51239e3e65 c4b948b1_c15e_c044_0c58_760fa7a05c24["candidate"] 684c0a17_ffb1_1e9d_8832_0fd2d71d0d2d --> c4b948b1_c15e_c044_0c58_760fa7a05c24 34c51775_007f_62b9_1a03_701b6e4fdea4["fetchStyles"] 684c0a17_ffb1_1e9d_8832_0fd2d71d0d2d --> 34c51775_007f_62b9_1a03_701b6e4fdea4 13aa1b9d_f150_4b1c_adde_8f0b3a3d0690["retryAssertion"] 684c0a17_ffb1_1e9d_8832_0fd2d71d0d2d --> 13aa1b9d_f150_4b1c_adde_8f0b3a3d0690 4e0be14f_eeb1_ea76_7628_c5ce61d5fef9["test"] 684c0a17_ffb1_1e9d_8832_0fd2d71d0d2d --> 4e0be14f_eeb1_ea76_7628_c5ce61d5fef9 bf24b5bb_feda_f89b_5870_232ac86e45a6["vitest"] 684c0a17_ffb1_1e9d_8832_0fd2d71d0d2d --> bf24b5bb_feda_f89b_5870_232ac86e45a6 style 684c0a17_ffb1_1e9d_8832_0fd2d71d0d2d fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import { describe } from 'vitest'
import { candidate, css, fetchStyles, js, json, jsx, retryAssertion, test, txt } from '../utils'
test(
'production build',
{
fs: {
'package.json': json`
{
"dependencies": {
"react": "^18",
"react-dom": "^18",
"next": "^14"
},
"devDependencies": {
"@tailwindcss/postcss": "workspace:^",
"tailwindcss": "workspace:^"
}
}
`,
'postcss.config.mjs': js`
export default {
plugins: {
'@tailwindcss/postcss': {},
},
}
`,
'next.config.mjs': js`export default {}`,
'app/layout.js': js`
import './globals.css'
export default function RootLayout({ children }) {
return (
<html>
<body>{children}</body>
</html>
)
}
`,
'app/page.js': js`
import styles from './page.module.css'
export default function Page() {
return (
<h1 className={styles.heading + ' text-3xl font-bold underline'}>Hello, Next.js!</h1>
)
}
`,
'app/page.module.css': css`
@reference './globals.css';
.heading {
@apply text-red-500 animate-ping skew-7;
}
`,
'app/globals.css': css`
@reference 'tailwindcss/theme';
@import 'tailwindcss/utilities';
`,
},
},
async ({ fs, exec, expect }) => {
// ... (427 more lines)
Domain
Dependencies
Source
Frequently Asked Questions
What does next.test.ts do?
next.test.ts is a source file in the tailwindcss codebase, written in typescript. It belongs to the OxideEngine domain.
What does next.test.ts depend on?
next.test.ts imports 6 module(s): candidate, fetchStyles, retryAssertion, test, utils.ts, vitest.
Where is next.test.ts in the architecture?
next.test.ts is located at integrations/postcss/next.test.ts (domain: OxideEngine, directory: integrations/postcss).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free