Skip to content

Commit

Permalink
fix(gcc): add hide_warnings_for to gcc options for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Schmidt committed Feb 3, 2020
1 parent 4ff95f4 commit 42197d9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions plugins/gcc/test-writer.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ const _getOptions = function(pack, dir, options) {
opts.js = options.js ? options.js.slice() : [];
opts.output_manifest = path.join(dir, 'gcc-test-manifest');
opts.js_output_file = path.join(dir, pack.name + '-test.min.js');
opts.hide_warnings_for = options.hide_warnings_for ? options.hide_warnings_for.slice() : [];

for (var key in mocks) {
opts.js.push(mocks[key]);
Expand Down

0 comments on commit 42197d9

Please sign in to comment.