mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
b391c8d1ae
ref #3060 - Some of our tests use the old signin/signout as part of the setup/teardown process. The old stuff is going away, so this PR switches everything over to use the new admin by default. - There wil be a further PR to remove the old stuff completely soon.
34 lines
No EOL
1.3 KiB
JavaScript
34 lines
No EOL
1.3 KiB
JavaScript
// # Signup Test
|
|
// Test that signup works correctly
|
|
|
|
/*global CasperTest, casper, email */
|
|
|
|
CasperTest.begin('Ghost setup fails properly', 5, function suite(test) {
|
|
casper.thenOpenAndWaitForPageLoad('setup', function then() {
|
|
test.assertUrlMatch(/ghost\/ember\/setup\/$/, 'Landed on the correct URL');
|
|
});
|
|
|
|
casper.then(function setupWithShortPassword() {
|
|
casper.fillAndAdd('#setup', {email: email, password: 'test'});
|
|
});
|
|
|
|
// should now throw a short password error
|
|
casper.waitForSelector('.notification-error', function onSuccess() {
|
|
test.assert(true, 'Got error notification');
|
|
test.assertSelectorDoesntHaveText('.notification-error', '[object Object]');
|
|
}, function onTimeout() {
|
|
test.assert(false, 'No error notification :(');
|
|
});
|
|
|
|
casper.then(function setupWithLongPassword() {
|
|
casper.fillAndAdd('#setup', {email: email, password: 'testing1234'});
|
|
});
|
|
|
|
// should now throw a 1 user only error
|
|
casper.waitForSelector('.notification-error', function onSuccess() {
|
|
test.assert(true, 'Got error notification');
|
|
test.assertSelectorDoesntHaveText('.notification-error', '[object Object]');
|
|
}, function onTimeout() {
|
|
test.assert(false, 'No error notification :(');
|
|
});
|
|
}, true); |