X-Git-Url: https://git.squeep.com/?a=blobdiff_plain;f=test%2Fsrc%2Ftemplate%2Fadmin-topic-details-html.js;h=ce19af7d1b2b064997052c4c375d393fc965ed84;hb=b806715f9288323cce7b0ab437ee78b01d26c548;hp=62a5ede783d5c90b05bee2b00de8f70c44e68996;hpb=3ca7fccb306d0b23626befc3791ffa360b3db1e7;p=websub-hub diff --git a/test/src/template/admin-topic-details-html.js b/test/src/template/admin-topic-details-html.js index 62a5ede..ce19af7 100644 --- a/test/src/template/admin-topic-details-html.js +++ b/test/src/template/admin-topic-details-html.js @@ -22,28 +22,28 @@ describe('Admin Topic Details HTML Template', function () { config = new Config('test'); }); - it('renders', function () { + it('renders', async function () { const result = template(ctx, config); - lintHtml(result); + await lintHtml(result); assert(result); }); - it('covers null topic', function () { + it('covers null topic', async function () { ctx.topic = null; ctx.subscriptions = null; const result = template(ctx, config); - lintHtml(result); + await lintHtml(result); assert(result); }); - it('covers missing subscriptions', function () { + it('covers missing subscriptions', async function () { delete ctx.subscriptions; const result = template(ctx, config); - lintHtml(result); + await lintHtml(result); assert(result); }); - it('covers plural subscriptions', function () { + it('covers plural subscriptions', async function () { ctx.subscriptions = [{}, {}, {}]; const result = template(ctx, config); - lintHtml(result); + await lintHtml(result); assert(result); }); });