Run crash reporter specs on all platforms

This commit is contained in:
Kevin Sawicki 2017-02-13 10:07:10 -08:00
parent 3b7207da9f
commit f3756ccf29

View file

@ -35,7 +35,7 @@ describe('crashReporter module', function () {
}
it('should send minidump when renderer crashes', function (done) {
if (process.platform !== 'darwin') return done()
if (process.env.APPVEYOR === 'True') return done()
if (process.env.TRAVIS === 'true') return done()
this.timeout(120000)
@ -55,7 +55,7 @@ describe('crashReporter module', function () {
})
it('should send minidump when node processes crash', function (done) {
if (process.platform !== 'darwin') return done()
if (process.env.APPVEYOR === 'True') return done()
if (process.env.TRAVIS === 'true') return done()
this.timeout(120000)