1234567891011121314151617181920 |
- module.exports = {
- beforeEach : function (client) {
- client.url('http://localhost:8124/atompm').pause(300);
- },
- 'Test Startup' : function (client) {
- client.getTitle(function(title) {
- this.assert.ok(title.includes("AToMPM"), "Title is AToMPM");
- });
- },
- after : function (client) {
- client.end();
- },
- };
|