Skip to content

Commit

Permalink
devEnvSetup: Add comment about npm run test-integration
Browse files Browse the repository at this point in the history
  • Loading branch information
dd137 committed Sep 28, 2023
1 parent 3cb03ce commit 5555193
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions devEnvSetup.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,10 @@ question('Do you want to use another path (yes/no [no])? ')
})
.then(function() {
if (!runTests) return;
// Consider manually running `npm run test-integration` in meteor-desktop/, which also runs
// `desktop -- build -b` but tests its output and runs more tests. Not done automatically
// here because test-integration creates its own temp meteor project (a different approach
// to this script, which uses meteor-desktop-test-app) and overlaps this test here.
return spawn(npm, ['run', 'desktop', '--', 'build', '-b'], path.join(resolvedPath, 'meteor-desktop-test-app'));
})
.then(function() {
Expand Down

0 comments on commit 5555193

Please sign in to comment.