-
-
Save ruanyl/ed8da9d2a21fad9bc4b4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
describe('Test example.com', function(){ | |
before(function(done) { | |
client.init().url('http://example.com', done); | |
}); | |
describe('Check homepage', function(){ | |
it('should see the correct title', function(done) { | |
client.getTitle(function(err, title){ | |
expect(title).to.have.string('Example Domain'); | |
done(); | |
}); | |
}); | |
it('should see the body', function(done) { | |
client.getText('p', function(err, p){ | |
expect(p).to.have.string( | |
'for illustrative examples in documents.' | |
); | |
done(); | |
}) | |
}); | |
}); | |
after(function(done) { | |
client.end(); | |
done(); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment