aboutsummaryrefslogtreecommitdiffstats
path: root/lang/js/BrowserTestExtension/setup_testing.js
diff options
context:
space:
mode:
Diffstat (limited to 'lang/js/BrowserTestExtension/setup_testing.js')
-rw-r--r--lang/js/BrowserTestExtension/setup_testing.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/lang/js/BrowserTestExtension/setup_testing.js b/lang/js/BrowserTestExtension/setup_testing.js
index 7f70d347..52aeac58 100644
--- a/lang/js/BrowserTestExtension/setup_testing.js
+++ b/lang/js/BrowserTestExtension/setup_testing.js
@@ -16,7 +16,13 @@
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, see <http://www.gnu.org/licenses/>.
* SPDX-License-Identifier: LGPL-2.1+
+ *
+ * Author(s):
+ * Maximilian Krambach <[email protected]>
*/
+
+/* global mocha, chai */
+
mocha.setup('bdd');
-var expect = chai.expect;
+const expect = chai.expect; //eslint-disable-line no-unused-vars
chai.config.includeStack = true; \ No newline at end of file