01_startup_test.js 371 B

1234567891011121314151617181920
  1. module.exports = {
  2. beforeEach : function (client) {
  3. client.url('http://localhost:8124/atompm').pause(300);
  4. },
  5. 'Test Startup' : function (client) {
  6. client.getTitle(function(title) {
  7. this.assert.ok(title.includes("AToMPM"), "Title is AToMPM");
  8. });
  9. },
  10. after : function (client) {
  11. client.end();
  12. },
  13. };