icloudtweetdeckhipchattelegramhangoutsslackgmailskypefacebook-workplaceoutlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsapp
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.
24 lines
570 B
24 lines
570 B
/** |
|
* This is an example test. |
|
*/ |
|
|
|
const chai = require('chai'); |
|
const expect = chai.expect; |
|
const RamboxTestHelper = require('../../helpers/RamboxTestHelper'); |
|
|
|
describe('Rambox window', function() { |
|
|
|
/** |
|
* The Rambox test helper does common stuff. |
|
* |
|
* @type {module.exports} |
|
*/ |
|
const ramboxTestHelper = new RamboxTestHelper(); |
|
|
|
it('should have "Rambox-OS" in the title', function () { |
|
return ramboxTestHelper.app.client.browserWindow.getTitle().then(function(title) { |
|
expect(title).to.contain('Rambox-OS'); |
|
return Promise.resolve(); |
|
}); |
|
}) |
|
});
|
|
|