Skip to content

Commit a344c2d

Browse files
committed
fix
1 parent 73ce3f9 commit a344c2d

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

test/e2e/app-dir/app-config-crossorigin/index.test.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,12 @@ createNextDescribe(
55
{
66
files: __dirname,
77
skipDeployment: true,
8-
skipStart: true,
98
},
10-
({ next }) => {
9+
({ next, isNextStart }) => {
10+
if (isNextStart) {
11+
it('skip in start mode', () => {})
12+
return
13+
}
1114
it('should render correctly with assetPrefix: "/"', async () => {
1215
const $ = await next.render$('/')
1316
// Only potential external (assetPrefix) <script /> and <link /> should have crossorigin attribute

0 commit comments

Comments
 (0)