Fix copy-paste mistake in linkTitle.test.js

As far as I can see this is not an integration test, because linkTitle.js
does not interact with the document (in contrast to footerLink.js, which
does).

Change-Id: I8b611263020fe597efb63d8a0080b996ffc7dde4
This commit is contained in:
Thiemo Kreuz 2018-12-18 10:00:33 +01:00 committed by Niedzielski
parent 6ed00b924a
commit 357dbc4ff4

View file

@ -1,8 +1,6 @@
import linkTitle from '../../../src/changeListeners/linkTitle'; import linkTitle from '../../../src/changeListeners/linkTitle';
// Since footerLink manipulates the DOM, this test is, by necessity, an QUnit.module( 'ext.popups/changeListeners/linkTitle', {
// integration test.
QUnit.module( 'ext.popups/changeListeners/footerLink @integration', {
beforeEach() { beforeEach() {
this.$link = $( '<a>' ) this.$link = $( '<a>' )
.attr( 'title', 'Foo' ); .attr( 'title', 'Foo' );