mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 19:09:29 +00:00
f6953d4096
This is just the smallest possible boilerplate to get the first trivial test running. More test cases will be added in the following patches. Bug: T289560 Change-Id: I3a4e49a7b9761db00b211e933386bad71d4f0942
8 lines
194 B
JavaScript
8 lines
194 B
JavaScript
QUnit.module( 've.ui.MWTransclusionOutlineButtonWidget' );
|
|
|
|
QUnit.test( 'Constructor', ( assert ) => {
|
|
const widget = new ve.ui.MWTransclusionOutlineButtonWidget();
|
|
|
|
assert.ok( widget );
|
|
} );
|