Skip to content

Commit b7c2a61

Browse files
committed
test: improve message
1 parent 7441ce4 commit b7c2a61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/node/release.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ describe(`Release ${packFile}`, function () {
5151
let tarFileList;
5252
before(function () {
5353
this.timeout(120_000); // npm pack can be slow
54-
expect(fs.existsSync(packFile)).to.equal(false);
54+
expect(fs.existsSync(packFile), `expected ${packFile} to NOT exist`).to.equal(false);
5555
cp.execSync('npm pack', { stdio: 'ignore' });
5656
tarFileList = [];
5757
tar.list({

0 commit comments

Comments
 (0)