mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-11-17 20:41:32 +00:00
25 lines
479 B
JavaScript
25 lines
479 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const assert = require( 'assert' );
|
||
|
const page = require( '../pageobjects/popups.page' );
|
||
|
|
||
|
describe( 'Dwelling on a valid link', function () {
|
||
|
|
||
|
before( function () {
|
||
|
page.setup();
|
||
|
} );
|
||
|
|
||
|
it( 'I should see a preview', function () {
|
||
|
page.open();
|
||
|
page.dwellLink();
|
||
|
assert( page.seePreview() );
|
||
|
} );
|
||
|
|
||
|
it( 'Abandoning link hides preview', function () {
|
||
|
page.open();
|
||
|
page.dwellLink();
|
||
|
page.abandonLink();
|
||
|
assert( page.doNotSeePreview() );
|
||
|
} );
|
||
|
} );
|