UNPKG

@testim/testim-cli

Version:

Command line interface for running Testing on you CI

17 lines (12 loc) 297 B
describe('call', function() { before(h.setup()); var isCalled = false; before(function() { return this.client.call(function() { isCalled = true; }); }); it('should have executed a function', function() { assert.ok(isCalled); }); });