mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-12-11 22:56:01 +00:00
626d9d4188
This adds a test which checks if the extension appears on the Special:Version page. This is an initial step for adding more browser tests to check changes done in I26fe41c328157233cc5b06d38d2ba0f7b036a853 Change-Id: I9a9d1cd2a25277f2c430f4e80b51b72c1621f91b
10 lines
251 B
JavaScript
10 lines
251 B
JavaScript
var assert = require( 'assert' ),
|
|
VersionPage = require( '../pageobjects/version.page' );
|
|
|
|
describe( 'Cite', function () {
|
|
it( 'is configured correctly', function () {
|
|
VersionPage.open();
|
|
assert( VersionPage.extension.isExisting() );
|
|
} );
|
|
} );
|