Err "QUnit.equals has been deprecated since 2009 (e88049a0), use QUnit.equal instead"
Hi,
In the file myTests.js I have the code below:
- test('assertions', function() {
- equals( 1, 1, 'one equals one');
- })
when I run it I got the err "QUnit.equals has been deprecated since 2009 (e88049a0), use QUnit.equal "
instead if I run :
- test('assertions', function() {
- ok( 1 == 1, 'one equals one');
- })
everything are ok.
what shell I do to fox this problem err ?
Thanks