mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
10 lines
371 B
JavaScript
10 lines
371 B
JavaScript
|
/**
|
||
|
* Tests logging out and attempting to sign up
|
||
|
*/
|
||
|
|
||
|
/*globals casper, __utils__, url, testPost, falseUser, email */
|
||
|
CasperTest.begin('Redirects page 1 request', 1, function suite(test) {
|
||
|
casper.thenOpen(url + 'page/1/', function then(response) {
|
||
|
test.assertEqual(casper.getCurrentUrl().indexOf('page/'), -1, 'Should be redirected to "/".');
|
||
|
});
|
||
|
}, true);
|