Skip to content

Commit

Permalink
hotfix merge issue in watchCases (not in CI)
Browse files Browse the repository at this point in the history
  • Loading branch information
sokra committed Jun 28, 2018
1 parent 09beba0 commit 43563b3
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions test/watchCases/plugins/define-plugin/0/index.js
@@ -1,15 +1,17 @@
it("should be able to use dynamic defines in watch mode", function() {
const module = require("./module");
module.should.be.eql({
expect(module).toEqual({
default: WATCH_STEP,
type: "string"
type: "string",
[Symbol.toStringTag]: "Module"
});
});

it("should not update a define when dependencies list is missing", function() {
const module2 = require("./module2");
module2.should.be.eql({
expect(module2).toEqual({
default: "0",
type: "string"
type: "string",
[Symbol.toStringTag]: "Module"
});
});

0 comments on commit 43563b3

Please sign in to comment.