Skip to content

Commit

Permalink
update tap
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Sep 20, 2016
1 parent b266df3 commit 74db9ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"devDependencies": {
"mkdirp": "0",
"rimraf": "^2.2.8",
"tap": "^5.7.0",
"tap": "^7.1.2",
"tick": "0.0.6"
},
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions test/global-leakage.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ if (require.main === module)
return require('tap').pass('ok')

var before = Object.keys(global).sort().filter(function (t) {
return t !== '__coverage__'
return t !== '__coverage__' && t !== '__core-js_shared__'
}).join(':')
var assert = require('assert')
var glob = require('../')

process.on('exit', function() {
delete global.TAP_Global_Harness
var after = Object.keys(global).sort().filter(function (t) {
return t !== '__coverage__'
return t !== '__coverage__' && t !== '__core-js_shared__'
}).join(':')
if (after !== before) {
console.log('- ' + before)
Expand Down

0 comments on commit 74db9ce

Please sign in to comment.