outlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchattelegramhangoutsslackgmailskypefacebook-workplace
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
556 B
25 lines
556 B
8 years ago
|
/**
|
||
|
* This is an example test.
|
||
|
*/
|
||
|
|
||
|
var chai = require('chai');
|
||
|
var expect = chai.expect;
|
||
|
var RamboxTestHelper = require('../../helpers/RamboxTestHelper');
|
||
|
|
||
|
describe('Rambox window', function() {
|
||
|
|
||
|
/**
|
||
|
* The Rambox test helper does common stuff.
|
||
|
*
|
||
|
* @type {module.exports}
|
||
|
*/
|
||
|
var ramboxTestHelper = new RamboxTestHelper();
|
||
|
|
||
|
it('should have "Rambox" in the title', function () {
|
||
|
return ramboxTestHelper.app.client.browserWindow.getTitle().then(function(title) {
|
||
|
expect(title).to.contain('Rambox');
|
||
|
return Promise.resolve();
|
||
|
});
|
||
|
})
|
||
|
});
|