Merge pull request #6457 from pmusaraj/yarn-manage-test-vendor-dependencies

DEV: Use Yarn managed test vendor dependencies
This commit is contained in:
Guo Xiang Tan
2018-10-08 09:26:26 +08:00
committed by GitHub
11 changed files with 127 additions and 5312 deletions

View File

@@ -134,7 +134,7 @@ QUnit.test("selectUp calls _moveSelection with -1", assert => {
QUnit.test("goBack calls history.back", assert => {
var called = false;
sandbox.stub(history, "back", function() {
sandbox.stub(history, "back").callsFake(function() {
called = true;
});