Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit 642de06

Browse files
Alexander Jeurissenjuliemr
Alexander Jeurissen
authored andcommitted
feat(protractor): add removeMockModule method
1 parent 71c9a07 commit 642de06

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

lib/protractor.js

+10
Original file line numberDiff line numberDiff line change
@@ -639,6 +639,16 @@ Protractor.prototype.clearMockModules = function() {
639639
this.moduleScripts_ = [];
640640
};
641641

642+
/**
643+
* Remove a registered mock module.
644+
* @param {!string} name The name of the module to remove.
645+
*/
646+
Protractor.prototype.removeMockModule = function (name) {
647+
var index = this.moduleNames_.indexOf(name);
648+
this.moduleNames_.splice(index, 1);
649+
this.moduleScripts_.splice(index, 1);
650+
};
651+
642652
/**
643653
* See webdriver.WebDriver.get
644654
*

spec/basic/mockmodule_spec.js

+12
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,16 @@ describe('mock modules', function() {
3636

3737
expect(element(by.css('[app-version]')).getText()).toEqual('3');
3838
});
39+
40+
it('should have the version of the module A after deleting module B', function() {
41+
browser.addMockModule('moduleA', mockModuleA);
42+
browser.addMockModule('moduleB', mockModuleB);
43+
44+
browser.removeMockModule('moduleB');
45+
46+
browser.get('index.html');
47+
48+
expect(element(by.css('[app-version]')).getText()).toEqual('2');
49+
});
50+
3951
});

0 commit comments

Comments
 (0)