Page MenuHomePhabricator

Update QUnit test suites to use new no-globals and assert-object pattern
Closed, ResolvedPublic

Description

module();

test(, function () {

expect();

equal()'

});

  • - >

QUnit.module();

QUnit.test(, function ( assert ) {

QUnit.expect();

assert.equal()'

});


Version: 1.20.x
Severity: minor

Details

Reference
bz37390

Event Timeline

bzimport raised the priority of this task from to Low.Nov 22 2014, 12:30 AM
bzimport set Reference to bz37390.

I implemented this in QUnit a little while back, it was released today as part of QUnit 1.7.0 (our copy is already updated).