Guest User

Untitled

a guest
Nov 21st, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. describe('sample test', function () {
  2. it('should work', function (done) {
  3. browser
  4. .version()
  5. .then(function (v) {
  6. console.log(v);
  7.  
  8. expect(true).to.be.true;
  9. done();
  10. })
  11. });
  12. });
Add Comment
Please, Sign In to add comment