Answer»
- ASYNC() : Instruct QUnit to wait for an asynchronous operation.
- deepEqual() : A deep RECURSIVE comparison, WORKING on primitive types, arrays, objects, REGULAR expressions, dates, and functions.
- equal() : A non-strict comparison, roughly equivalent to JUnit's assertEquals.
- EXPECT() : Specify how many assertions are expected to run within a test.
- notDeepEqual() : An inverted deep recursive comparison, working on primitive types, arrays, objects, regular expressions, dates, and functions.
- notEqual() : A non-strict comparison, checking for inequality.
- notOk() :A boolean check, inverse of ok() and CommonJS's assert.ok(), and equivalent to JUnit's assertFalse(). Passes if the first argument is false.
- notPropEqual() : A strict comparison of an object's own properties, checking for inequality.
- notStrictEqual() : A strict comparison, checking for inequality.
- Ok() : A boolean check, equivalent to CommonJS's assert.ok() and JUnit's assertTrue(). Passes if the first argument is true.
- propEqual() :A strict type and value comparison of an object's own properties.
- push() : Report the result of a custom assertion.
- strictEqual() : A strict type and value comparison.
- throws() : Test if a callback throws an exception, and optionally compare the thrown error.
|