Skip to content

Commit

Permalink
refactor: move scripts to same folder (webpack#4500)
Browse files Browse the repository at this point in the history
* refactor: move scripts to same folder

* refactor: move scripts to same folder
  • Loading branch information
rishabh3112 authored Jun 27, 2022
1 parent 7f1f202 commit 8866300
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ module.exports = {
],
testPathIgnorePatterns: ["<rootDir>/bin/this/process-arguments.js"],
snapshotResolver: "<rootDir>/test/helpers/snapshotResolver.js",
setupFilesAfterEnv: ["<rootDir>/setupTest.js"],
globalSetup: "<rootDir>/globalSetupTest.js",
setupFilesAfterEnv: ["<rootDir>/scripts/setupTest.js"],
globalSetup: "<rootDir>/scripts/globalSetupTest.js",
};
2 changes: 1 addition & 1 deletion globalSetupTest.js → scripts/globalSetupTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// eslint-disable-next-line import/no-extraneous-dependencies
const tcpPortUsed = require("tcp-port-used");
const { version } = require("webpack");
const ports = require("./test/ports-map");
const ports = require("../test/ports-map");

// eslint-disable-next-line no-console
console.log(`\n Running tests for webpack @${version} \n`);
Expand Down
File renamed without changes.

0 comments on commit 8866300

Please sign in to comment.