update devDependencies, fix lint issues
[squeep-authentication-module] / test / lib / template / settings-html.js
index 858f1c22435264a0f60d8e4ce9455e444812d2dd..3bd561965d7d18983a435a1afe2f3e7f23592511 100644 (file)
@@ -3,7 +3,6 @@
 
 const assert = require('assert');
 const { SettingsHTML } = require('../../../lib/template');
-const stubLogger = require('../../stub-logger');
 const lintHtml = require('../../lint-html');
 
 describe('Template SettingsHTML', function () {
@@ -25,7 +24,7 @@ describe('Template SettingsHTML', function () {
 
   it('renders, no otp', async function () {
     ctx.errors = ['an error', 'another error'];
-    ctx.notifications = ['a notice']
+    ctx.notifications = ['a notice'];
     const result = SettingsHTML(ctx, options);
     await lintHtml(result);
     assert(result);