mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-07 11:30:55 +03:00
7c4381c812
- Every route can set a title token that is combined with the blog’s title, resulting in titles like ‘Content - Test Blog’. - Subroutes are supported (‘Settings - General - Test Blog’) - The blog’s name is applied to and taken from the `config` object to spare Ember a REST call via `store.find(‘settings’)`. - Tests have been changed to test for the new titles. - The initially proposed solution (https://github.com/paddle8/ember-document-title) doesn’t play nice with EAK, which is why I went with this solution (https://gist.github.com/machty/8413411) by Ember.JS core dev @Machty.
33 lines
1.2 KiB
JavaScript
33 lines
1.2 KiB
JavaScript
// # Signout Test
|
|
// Test that signout works correctly
|
|
|
|
/*globals CasperTest, casper */
|
|
CasperTest.begin('Ghost signout works correctly', 3, function suite(test) {
|
|
CasperTest.Routines.signout.run(test);
|
|
CasperTest.Routines.signin.run(test);
|
|
|
|
casper.thenOpenAndWaitForPageLoad('root', function then() {
|
|
test.assertTitle('Content - Test Blog', 'Ghost admin has incorrect title');
|
|
test.assertUrlMatch(/ghost\/\d+\/$/, 'Landed on the correct URL without signing in');
|
|
});
|
|
|
|
casper.thenClick('.user-menu .nav-label').waitFor(function checkOpaque() {
|
|
return this.evaluate(function () {
|
|
var menu = document.querySelector('.user-menu .dropdown.open');
|
|
return window.getComputedStyle(menu).getPropertyValue('display') === 'block' &&
|
|
window.getComputedStyle(menu).getPropertyValue('opacity') === '1';
|
|
});
|
|
});
|
|
|
|
casper.captureScreenshot('user-menu-open.png');
|
|
|
|
casper.waitForSelector('.user-menu-signout');
|
|
casper.thenClick('.user-menu-signout');
|
|
|
|
casper.waitForSelector('#login').then(function assertSuccess() {
|
|
test.assert(true, 'Got login screen');
|
|
});
|
|
|
|
casper.captureScreenshot('user-menu-logout-clicked.png');
|
|
}, true);
|