Skip to content

Instantly share code, notes, and snippets.

@giovanettid
Last active November 9, 2015 21:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save giovanettid/ca7c62dc27e00d0d11ae to your computer and use it in GitHub Desktop.
Save giovanettid/ca7c62dc27e00d0d11ae to your computer and use it in GitHub Desktop.
mocha chai test with zombiejs page object
describe('Todo add scenario', function() {
before(function(done) {
todo.before(done);
});
it('titre de la page', function() {
expect(todo.title()).to.equal('TodoListWithBB');
});
it('titre de la todo list', function() {
expect(todo.titleList()).to.equal('todos');
});
it('ajout premier dans la todo list',function() {
todo.typeNew('first todo').enterNew();
expect(todo.first()).to.equal('first todo');
});
it('ajout deuxieme todo dans la todo list',function() {
todo.typeNew('second todo').enterNew();
expect(todo.nbVisible()).to.equal(2);
expect(todo.nthText(2)).to.equal('second todo');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment