mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/RevisionSlider
synced 2024-12-20 10:50:40 +00:00
f5de8ee108
* eslint-config-wikimedia: 0.27.0 → 0.28.0 The following rules are failing and were disabled: * modules: * no-mixed-spaces-and-tabs * no-jquery/no-extend * implicit-arrow-linebreak * tests/qunit: * no-jquery/no-extend * grunt-stylelint: 0.19.0 → 0.20.0 * stylelint-config-wikimedia: 0.16.1 → 0.17.1 Change-Id: I3fd3c4a2cbb03d3aa4c8efb658e33d14d24cd518
37 lines
1 KiB
JavaScript
37 lines
1 KiB
JavaScript
'use strict';
|
|
|
|
const assert = require( 'assert' ),
|
|
DiffPage = require( '../pageobjects/diff.page' );
|
|
|
|
describe( 'RevisionSlider diff links', () => {
|
|
|
|
beforeEach( async () => {
|
|
await DiffPage.prepareSimpleTests( 3 );
|
|
DiffPage.ready();
|
|
await DiffPage.openSlider();
|
|
} );
|
|
|
|
it( ' older edit diff link can be clicked', async () => {
|
|
await DiffPage.rsEditOlderButton.click();
|
|
await DiffPage.waitUntilLoaded();
|
|
|
|
assert( await DiffPage.isOlderPointerOn( 1 ) );
|
|
assert( await DiffPage.isNewerPointerOn( 2 ) );
|
|
assert( await DiffPage.showsOlderSummary( 1 ) );
|
|
assert( await DiffPage.showsNewerSummary( 2 ) );
|
|
} );
|
|
|
|
it( ' newer edit diff link can be clicked', async () => {
|
|
await DiffPage.rsEditOlderButton.click();
|
|
await DiffPage.waitUntilLoaded();
|
|
|
|
await DiffPage.rsEditNewerButton.click();
|
|
await DiffPage.waitUntilLoaded();
|
|
|
|
assert( await DiffPage.isOlderPointerOn( 2 ) );
|
|
assert( await DiffPage.isNewerPointerOn( 3 ) );
|
|
assert( await DiffPage.showsOlderSummary( 2 ) );
|
|
assert( await DiffPage.showsNewerSummary( 3 ) );
|
|
} );
|
|
} );
|