diff --git a/entries/QUnit.asyncTest.xml b/entries/QUnit.asyncTest.xml index cd3cb1e..2787c62 100644 --- a/entries/QUnit.asyncTest.xml +++ b/entries/QUnit.asyncTest.xml @@ -18,6 +18,7 @@

For testing asynchronous code, QUnit.asyncTest will automatically stop the test runner and wait for your code to call QUnit.start() to continue.

+

The assert argument to the callback contains all of QUnit's assertion methods. Use this argument to call your test assertions.

This method used to have an optional second argument called expected. This argument is deprecated and its usage will start throwing errors in 2.0.0. If you're using it, use expect() instead.

diff --git a/entries/QUnit.test.xml b/entries/QUnit.test.xml index 9326a2b..fd08c08 100644 --- a/entries/QUnit.test.xml +++ b/entries/QUnit.test.xml @@ -18,7 +18,7 @@

When testing the most common, synchronous code, use QUnit.test()

-

The assert argument to the callback contains all of QUnit's assertion methods. You should use this argument to call your test assertions

+

The assert argument to the callback contains all of QUnit's assertion methods. Use this argument to call your test assertions.

This method used to have an optional second argument called expected. This argument is deprecated and its usage will start throwing errors in 2.0.0. If you're using it, use expect() instead.