@@ -58,17 +58,31 @@ afterEach(async () => {
58
58
} )
59
59
60
60
const DUMMY_PACKAGE_JSON = { name : 'dummy' , version : '1.0.0' }
61
+ const netlifyConfig = { build : { } }
61
62
62
63
describe ( 'preBuild()' , ( ) => {
63
64
test ( 'fail build if the app has static html export in npm script' , async ( ) => {
64
65
await expect (
65
66
plugin . onPreBuild ( {
66
- netlifyConfig : { } ,
67
+ netlifyConfig : { build : { command : 'npm run build' } } ,
67
68
packageJson : { ...DUMMY_PACKAGE_JSON , scripts : { build : 'next export' } } ,
68
69
utils,
69
70
constants : { FUNCTIONS_SRC : 'out_functions' } ,
70
71
} ) ,
71
- ) . rejects . toThrow ( '** Static HTML export next.js projects do not require this plugin **' )
72
+ ) . rejects . toThrow (
73
+ `Static HTML export Next.js projects do not require this plugin. Check your project's build command for 'next export'.` ,
74
+ )
75
+ } )
76
+
77
+ test ( 'do not fail build if the app has next export in an unused script' , async ( ) => {
78
+ await expect (
79
+ plugin . onPreBuild ( {
80
+ netlifyConfig,
81
+ packageJson : { ...DUMMY_PACKAGE_JSON , scripts : { export : 'next export' } } ,
82
+ utils,
83
+ constants : { } ,
84
+ } ) ,
85
+ ) . resolves
72
86
} )
73
87
74
88
test ( 'fail build if the app has static html export in toml/ntl config' , async ( ) => {
@@ -79,7 +93,9 @@ describe('preBuild()', () => {
79
93
utils,
80
94
constants : { FUNCTIONS_SRC : 'out_functions' } ,
81
95
} ) ,
82
- ) . rejects . toThrow ( '** Static HTML export next.js projects do not require this plugin **' )
96
+ ) . rejects . toThrow (
97
+ `Static HTML export Next.js projects do not require this plugin. Check your project's build command for 'next export'.` ,
98
+ )
83
99
} )
84
100
85
101
test ( 'fail build if app has next-on-netlify installed' , async ( ) => {
@@ -88,7 +104,7 @@ describe('preBuild()', () => {
88
104
}
89
105
await expect (
90
106
plugin . onPreBuild ( {
91
- netlifyConfig : { } ,
107
+ netlifyConfig,
92
108
packageJson,
93
109
utils,
94
110
} ) ,
@@ -103,7 +119,7 @@ describe('preBuild()', () => {
103
119
}
104
120
await expect (
105
121
plugin . onPreBuild ( {
106
- netlifyConfig : { } ,
122
+ netlifyConfig,
107
123
packageJson,
108
124
utils,
109
125
} ) ,
@@ -115,7 +131,7 @@ describe('preBuild()', () => {
115
131
test ( 'fail build if the app has no package.json' , async ( ) => {
116
132
await expect (
117
133
plugin . onPreBuild ( {
118
- netlifyConfig : { } ,
134
+ netlifyConfig,
119
135
packageJson : { } ,
120
136
utils,
121
137
constants : { FUNCTIONS_SRC : 'out_functions' } ,
@@ -125,7 +141,7 @@ describe('preBuild()', () => {
125
141
126
142
test ( 'create next.config.js with correct target if file does not exist' , async ( ) => {
127
143
await plugin . onPreBuild ( {
128
- netlifyConfig : { } ,
144
+ netlifyConfig,
129
145
packageJson : DUMMY_PACKAGE_JSON ,
130
146
utils,
131
147
constants : { FUNCTIONS_SRC : 'out_functions' } ,
@@ -140,7 +156,7 @@ describe('preBuild()', () => {
140
156
await useFixture ( fixtureName )
141
157
await expect (
142
158
plugin . onPreBuild ( {
143
- netlifyConfig : { } ,
159
+ netlifyConfig,
144
160
packageJson : DUMMY_PACKAGE_JSON ,
145
161
utils,
146
162
constants : { FUNCTIONS_SRC : 'out_functions' } ,
0 commit comments