mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 10:59:56 +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
200 B
JavaScript
8 lines
200 B
JavaScript
QUnit.module( 've.ui.MWTransclusionOutlineContainerWidget' );
|
|
|
|
QUnit.test( 'Constructor', ( assert ) => {
|
|
const widget = new ve.ui.MWTransclusionOutlineContainerWidget();
|
|
|
|
assert.ok( widget );
|
|
} );
|