Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
disable other extensions in testing (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
aliariff authored and bpasero committed Feb 1, 2019
1 parent 5101059 commit aafb824
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions bin/test
Expand Up @@ -64,6 +64,10 @@ function runTests() {
'--locale=' + locale,
];

if (process.env.CODE_DISABLE_EXTENSIONS) {
args.push('--disable-extensions');
}

console.log('Running extension tests: ' + [executable, args.join(' ')].join(' '));

var cmd = cp.spawn(executable, args);
Expand Down

0 comments on commit aafb824

Please sign in to comment.