-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(gcc): avoid using singleton test options instance
This was interfering with tests because the expected options and resolved options were the same instance.
- Loading branch information
Kevin Schmidt
committed
Feb 3, 2020
1 parent
42197d9
commit 0149230
Showing
3 changed files
with
48 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
'use strict'; | ||
/* eslint camelcase: "off" */ | ||
|
||
module.exports = { | ||
module.exports = () => ({ | ||
compilation_level: 'SIMPLE', | ||
dependency_mode: 'PRUNE_LEGACY', | ||
summary_detail_level: 3, | ||
jscomp_off: '*' | ||
}; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters