Skip to content

Commit fc78e68

Browse files
committed
fix: coverage issue with saucelabs
1 parent ce0e933 commit fc78e68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ module.exports = (config) => {
100100
if (process.env['TRAVIS']) {
101101
let buildId = `TRAVIS #${process.env.TRAVIS_BUILD_NUMBER} (${process.env.TRAVIS_BUILD_ID})`;
102102

103-
if (process.env['TRAVIS_PULL_REQUEST'] === 'false') {
103+
if (process.env['TRAVIS_PULL_REQUEST'] !== 'false') {
104104
config.preprocessors['dist/@angular/material/**/!(*+(.|-)spec).js'] = ['coverage'];
105105
config.reporters.push('coverage');
106106
}

0 commit comments

Comments
 (0)