Skip to content

Commit

Permalink
dings
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
  • Loading branch information
jkowalleck committed Jun 17, 2024
1 parent d059370 commit 7b4db12
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/integration/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,8 @@ describe('integration', () => {
testSetups.forEach(({ skip: skipTests, purpose, dir, packageManager, results }) => {
skipTests = !!skipTests;
(skipTests
? describe
: describe.skip
? describe.skip
: describe
)(purpose, () => {
const built = spawnSync(
packageManager ?? 'npm', ['run', 'build'], {
Expand All @@ -178,7 +178,8 @@ describe('integration', () => {
if (/should not be used for production|Angular CLI requires a minimum|does not support Node\.js v/.test(built.stderr.toString())) {
skipTests = true
} else {
console.log(built, '\n')
console.log('purpose: ', purpose, '\n')
console.log('built', built, '\n')
throw err
}
}
Expand Down

0 comments on commit 7b4db12

Please sign in to comment.