We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1eaa5f4 commit c515454Copy full SHA for c515454
test/local.js
@@ -210,6 +210,17 @@ describe('Local', function () {
210
});
211
212
213
+ it('should stop local', function (done) {
214
+ this.timeout(MAX_TIMEOUT);
215
+ bsLocal.start({ 'key': process.env.BROWSERSTACK_ACCESS_KEY}, function(){
216
+ expect(bsLocal.isRunning()).to.equal(true);
217
+ bsLocal.stop(function(){
218
+ expect(bsLocal.isRunning()).to.equal(false);
219
+ done();
220
+ });
221
222
223
+
224
afterEach(function (done) {
225
this.timeout(60000);
226
bsLocal.stop(done);
0 commit comments