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 91629f2 commit ce8e3f7Copy full SHA for ce8e3f7
scripts/pit/its/initializer.js
@@ -33,7 +33,7 @@ const fs = require('fs');
33
await takeScreenshot(page, __filename, 'view-created');
34
await waitForServerReady(page, arg.url, { maxRetries: 30, retryInterval: 2000 });
35
const view = (await execCommand(`find src/main/frontend src/main/java -name '${viewName}'`)).stdout.trim();
36
- expect(fs.existsSync(view)).toBeTruthy();
+ expect(fs.existsSync(view), `Should exist ${view}`).toBeTruthy();
37
38
// Compile the application so as spring-devtools watches the changes
39
await compileAndReload(page, arg.url, { waitTime: 10000 });
0 commit comments