We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73ce3f9 commit a344c2dCopy full SHA for a344c2d
test/e2e/app-dir/app-config-crossorigin/index.test.ts
@@ -5,9 +5,12 @@ createNextDescribe(
5
{
6
files: __dirname,
7
skipDeployment: true,
8
- skipStart: true,
9
},
10
- ({ next }) => {
+ ({ next, isNextStart }) => {
+ if (isNextStart) {
11
+ it('skip in start mode', () => {})
12
+ return
13
+ }
14
it('should render correctly with assetPrefix: "/"', async () => {
15
const $ = await next.render$('/')
16
// Only potential external (assetPrefix) <script /> and <link /> should have crossorigin attribute
0 commit comments