X-Git-Url: https://git.squeep.com/?a=blobdiff_plain;f=test%2Fsrc%2Ftemplate%2Fadmin-overview-html.js;h=1f997827cddc59e604a86ff4bcf4e118751af55d;hb=b806715f9288323cce7b0ab437ee78b01d26c548;hp=acb57d0ebb6dd35186a77870a3413b7ccdf3a93b;hpb=3ca7fccb306d0b23626befc3791ffa360b3db1e7;p=websub-hub diff --git a/test/src/template/admin-overview-html.js b/test/src/template/admin-overview-html.js index acb57d0..1f99782 100644 --- a/test/src/template/admin-overview-html.js +++ b/test/src/template/admin-overview-html.js @@ -14,21 +14,21 @@ describe('Admin Overview HTML Template', function () { config = new Config('test'); }); - it('covers missing topics', function () { + it('covers missing topics', async function () { const result = template(ctx, config); - lintHtml(result); + await lintHtml(result); assert(result); }); - it('covers single topic', function () { + it('covers single topic', async function () { ctx.topics = [{}]; const result = template(ctx, config); - lintHtml(result); + await lintHtml(result); assert(result); }); - it('covers plural topics', function () { + it('covers plural topics', async function () { ctx.topics = [{}, {}, {}]; const result = template(ctx, config); - lintHtml(result); + await lintHtml(result); assert(result); }); });