Skip to content

Commit

Permalink
chore: remove broken deprecation tracing
Browse files Browse the repository at this point in the history
  • Loading branch information
jantimon committed Jan 20, 2021
1 parent 8c79abb commit 6096c8d
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion spec/basic.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ const OUTPUT_DIR = path.resolve(__dirname, '../dist/basic-spec');

jest.setTimeout(30000);
process.on('unhandledRejection', r => console.log(r));
process.traceDeprecation = true;

function testHtmlPlugin (webpackConfig, expectedResults, outputFile, done, expectErrors, expectWarnings) {
outputFile = outputFile || 'index.html';
Expand Down
1 change: 0 additions & 1 deletion spec/caching.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ const OUTPUT_DIR = path.join(__dirname, '../dist/caching-spec');

jest.setTimeout(30000);
process.on('unhandledRejection', r => console.log(r));
process.traceDeprecation = true;

function setUpCompiler (htmlWebpackPlugin) {
jest.spyOn(htmlWebpackPlugin, 'evaluateCompilationResult');
Expand Down
1 change: 0 additions & 1 deletion spec/example.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ const webpackMajorVersion = require('webpack/package.json').version.split('.')[0
const OUTPUT_DIR = path.resolve(__dirname, '../dist');

jest.setTimeout(30000);
process.traceDeprecation = true;

function runExample (exampleName, done) {
const examplePath = path.resolve(__dirname, '..', 'examples', exampleName);
Expand Down
1 change: 0 additions & 1 deletion spec/hot.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ const DEFAULT_TEMPLATE = DEFAULT_LOADER + '!' + require.resolve('../default_inde

jest.setTimeout(30000);
process.on('unhandledRejection', r => console.log(r));
process.traceDeprecation = true;

describe('HtmlWebpackPluginHMR', () => {
beforeEach(done => {
Expand Down

0 comments on commit 6096c8d

Please sign in to comment.