mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-17 19:21:39 +00:00
436bf80bd8
'Redirects' was disabled by Edward Tadros infbd373b
(2021-01-15). 'A newly created topic appears in the list of topics' was disabled by Jon Robson ind4828b2
(2020-09-24). Bug: T280652 Change-Id: I63fb62c0c2871ff2713643285cd6e5d878684f83
65 lines
1.6 KiB
JavaScript
65 lines
1.6 KiB
JavaScript
'use strict';
|
|
|
|
const
|
|
{
|
|
pageExists, iAmOnAPageThatDoesNotExist,
|
|
iAmUsingTheMobileSite,
|
|
iAmLoggedIntoTheMobileWebsite,
|
|
iAmOnPage
|
|
} = require( '../features/step_definitions/common_steps' ),
|
|
{
|
|
iClickTheAddTalkButton,
|
|
thereShouldBeASaveDiscussionButton,
|
|
thereShouldBeAnAddDiscussionButton,
|
|
thereShouldBeATalkTab,
|
|
thereShouldBeNoTalkButton
|
|
} = require( '../features/step_definitions/talk_steps' );
|
|
|
|
// @chrome @en.m.wikipedia.beta.wmflabs.org @firefox @test2.m.wikipedia.org @vagrant
|
|
describe( 'Talk', () => {
|
|
|
|
before( () => {
|
|
pageExists( 'Talk:Selenium talk test' );
|
|
pageExists( 'Selenium talk test' );
|
|
} );
|
|
|
|
beforeEach( () => {
|
|
iAmUsingTheMobileSite();
|
|
} );
|
|
|
|
it( 'Talk button not visible as logged out user', () => {
|
|
iAmOnPage( 'Selenium talk test' );
|
|
thereShouldBeNoTalkButton();
|
|
} );
|
|
|
|
// @login
|
|
it( 'Talk tab visible as logged in user', () => {
|
|
iAmLoggedIntoTheMobileWebsite();
|
|
iAmOnPage( 'Selenium talk test' );
|
|
thereShouldBeATalkTab();
|
|
} );
|
|
|
|
// @login
|
|
it( 'Talk on a page that doesn\'t exist (bug 64268)', () => {
|
|
iAmLoggedIntoTheMobileWebsite();
|
|
iAmOnAPageThatDoesNotExist();
|
|
thereShouldBeATalkTab();
|
|
} );
|
|
|
|
// @smoke @login
|
|
it( 'Add discussion button shows on talk pages for logged in users', () => {
|
|
iAmLoggedIntoTheMobileWebsite();
|
|
iAmOnPage( 'Talk:Selenium talk test' );
|
|
thereShouldBeAnAddDiscussionButton();
|
|
} );
|
|
|
|
// @smoke @login
|
|
it( 'Add discussion for talk page possible as logged in user', () => {
|
|
iAmLoggedIntoTheMobileWebsite();
|
|
iAmOnPage( 'Talk:Selenium talk test' );
|
|
iClickTheAddTalkButton();
|
|
thereShouldBeASaveDiscussionButton();
|
|
} );
|
|
|
|
} );
|