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 65b470f commit e505ea3Copy full SHA for e505ea3
scripts/ciTest.js
@@ -153,17 +153,13 @@ function runTests() {
153
}
154
155
if (formatTest) {
156
- checkFormat();
+ cp.execSync("npm run checkFormat", {
157
+ cwd: path.join(__dirname, ".."),
158
+ stdio: [0, 1, 2],
159
+ });
160
161
162
-function checkFormat() {
- cp.execSync("npm run checkFormat", {
- cwd: path.join(__dirname, ".."),
163
- stdio: [0, 1, 2],
164
- });
165
-}
166
-
167
function main() {
168
try {
169
init();
0 commit comments