Remove Travis references

This commit is contained in:
John Kleinschmidt 2017-11-30 15:39:32 -05:00
parent aab35073ee
commit 0ef8f58090
9 changed files with 8 additions and 78 deletions

View file

@ -30,12 +30,6 @@ describe('chromium feature', () => {
describe('heap snapshot', () => {
it('does not crash', function () {
if (process.env.TRAVIS === 'true') {
// FIXME(alexeykuzmin): Skip the test.
// this.skip()
return
}
process.atomBinding('v8_util').takeHeapSnapshot()
})
})
@ -173,12 +167,6 @@ describe('chromium feature', () => {
})
describe('window.open', () => {
before(function () {
if (process.env.TRAVIS === 'true' && process.platform === 'darwin') {
this.skip()
}
})
it('returns a BrowserWindowProxy object', () => {
const b = window.open('about:blank', '', 'show=no')
assert.equal(b.closed, false)