mirror of https://github.com/webpack/webpack.git
tests: rephrase description for Compiler tests
This commit is contained in:
parent
50e48a8ad7
commit
dc4320f728
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue