Skip to content
This repository has been archived by the owner on Feb 29, 2020. It is now read-only.

Commit

Permalink
Merge pull request #3887 from Mardak/b1421847-chai
Browse files Browse the repository at this point in the history
Fix Bug 1421847 - Update chai by fixing assert.propertyNotVal is not a function, r=dmose
  • Loading branch information
Dan Mosedale committed Nov 30, 2017
2 parents fac5949 + 23537b2 commit df09fdf
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 22 deletions.
53 changes: 33 additions & 20 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -19,7 +19,7 @@
"babel-plugin-transform-async-to-module-method": "6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
"babel-preset-react": "6.24.1",
"chai": "3.5.0",
"chai": "4.1.2",
"co-task": "1.0.0",
"cpx": "1.5.0",
"enzyme": "2.7.0",
Expand Down
2 changes: 1 addition & 1 deletion system-addon/test/unit/lib/TelemetryFeed.test.js
Expand Up @@ -132,7 +132,7 @@ describe("TelemetryFeed", () => {

const session2 = instance.addSession("foo", "about:home");

assert.propertyNotVal(session2.perf, "load_trigger_type",
assert.notPropertyVal(session2.perf, "load_trigger_type",
"first_window_opened");
});
it("should set load_trigger_ts to the value of perfService.timeOrigin", () => {
Expand Down

0 comments on commit df09fdf

Please sign in to comment.