| Index: remoting/webapp/js_proto/qunit_proto.js
|
| diff --git a/remoting/webapp/js_proto/qunit_proto.js b/remoting/webapp/js_proto/qunit_proto.js
|
| index 2b2816c1896235ffd441b1fbcc166f14e9c52a34..aed670ef5e49c99d50ea8db97f6f32f09b7c128b 100644
|
| --- a/remoting/webapp/js_proto/qunit_proto.js
|
| +++ b/remoting/webapp/js_proto/qunit_proto.js
|
| @@ -69,6 +69,20 @@ QUnit.Assert.prototype.equal = function(a, b, opt_message) {};
|
| QUnit.Assert.prototype.expect = function(assertionCount) {};
|
|
|
| /**
|
| + * @param {*} a
|
| + * @param {*} b
|
| + * @param {string=} opt_message
|
| + */
|
| +QUnit.Assert.prototype.strictEqual = function(a, b, opt_message) {};
|
| +
|
| +/**
|
| + * @param {function()} a
|
| + * @param {*=} opt_b
|
| + * @param {string=} opt_message
|
| + */
|
| +QUnit.Assert.prototype.throws = function(a, opt_b, opt_message) {};
|
| +
|
| +/**
|
| * @typedef {{
|
| * beforeEach: (function(QUnit.Assert=) | undefined),
|
| * afterEach: (function(QUnit.Assert=) | undefined)
|
|
|