tests: rephrase description for Compiler tests

This commit is contained in:
jamesgeorge007 2020-05-06 22:40:32 +05:30
parent 50e48a8ad7
commit dc4320f728
1 changed files with 5 additions and 5 deletions

View File

@ -366,7 +366,7 @@ describe("Compiler", () => {
done();
});
});
it("should not be run twice at a time (run)", function (done) {
it("should not be running twice at a time (run)", function (done) {
const compiler = webpack({
context: __dirname,
mode: "production",
@ -384,7 +384,7 @@ describe("Compiler", () => {
if (err) return done();
});
});
it("should not be run twice at a time (watch)", function (done) {
it("should not be running twice at a time (watch)", function (done) {
const compiler = webpack({
context: __dirname,
mode: "production",
@ -402,7 +402,7 @@ describe("Compiler", () => {
if (err) return done();
});
});
it("should not be run twice at a time (run - watch)", function (done) {
it("should not be running twice at a time (run - watch)", function (done) {
const compiler = webpack({
context: __dirname,
mode: "production",
@ -420,7 +420,7 @@ describe("Compiler", () => {
if (err) return done();
});
});
it("should not be run twice at a time (watch - run)", function (done) {
it("should not be running twice at a time (watch - run)", function (done) {
const compiler = webpack({
context: __dirname,
mode: "production",
@ -438,7 +438,7 @@ describe("Compiler", () => {
if (err) return done();
});
});
it("should not be run twice at a time (instance cb)", function (done) {
it("should not be running twice at a time (instance cb)", function (done) {
const compiler = webpack(
{
context: __dirname,