refactor of authentication and html-templates into separate modules
[websub-hub] / test / src / template / admin-ia-html.js
diff --git a/test/src/template/admin-ia-html.js b/test/src/template/admin-ia-html.js
deleted file mode 100644 (file)
index d909389..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-/* eslint-env mocha */
-'use strict';
-
-const assert = require('assert');
-const template = require('../../../src/template/admin-ia-html');
-const Config = require('../../../config');
-const config = new Config('test');
-
-describe('Admin Login HTML Template', function () {
-  let ctx;
-
-  beforeEach(function () {
-    ctx = {};
-  });
-
-  it('covers', function () {
-    ctx.errors = ['bad'];
-    const result = template(ctx, config);
-    assert(result);
-  });
-  it('covers empty', function () {
-    const result = template(ctx, config);
-    assert(result);
-  });
-});