Merge "Skin: Avoid redirect=no for links to non-redirects"
[lhc/web/wiklou.git] / tests / selenium / specs / specialrecentchanges.js
1 const assert = require( 'assert' ),
2 EditPage = require( '../pageobjects/edit.page' ),
3 RecentChangesPage = require( '../pageobjects/recentchanges.page' ),
4 Util = require( 'wdio-mediawiki/Util' );
5
6 describe( 'Special:RecentChanges', function () {
7 let content,
8 name;
9
10 beforeEach( function () {
11 browser.deleteCookie();
12 content = Util.getTestString();
13 name = Util.getTestString();
14 } );
15
16 // Skip due to failures on many repos (T199644)
17 it.skip( 'shows page creation', function () {
18 EditPage.edit( name, content );
19
20 RecentChangesPage.open();
21
22 assert.strictEqual( RecentChangesPage.titles[ 0 ].getText(), name );
23 } );
24
25 } );