mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-12-12 07:55:11 +00:00
13 lines
386 B
JavaScript
13 lines
386 B
JavaScript
|
QUnit.module( 've.dm.Autocomplete (Math)', ve.test.utils.mwEnvironment );
|
||
|
|
||
|
QUnit.test( 'Autocomplete list', function ( assert ) {
|
||
|
assert.notStrictEqual(
|
||
|
ve.ui.MWMathDialog.static.autocompleteWordList,
|
||
|
undefined,
|
||
|
'autocomplete list exists' );
|
||
|
assert.notEqual(
|
||
|
ve.ui.MWMathDialog.static.autocompleteWordList.indexOf( '\\alpha' ),
|
||
|
-1,
|
||
|
'autocomplete contains \\alpha' );
|
||
|
} );
|