From 4d88ddb20adcc8a075c6566fa61e99db91e36e1c Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Tue, 15 Nov 2022 14:35:30 -0500 Subject: [PATCH] fix: tests broken by commit to fix #11042 --- test/template-helpers.js | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/test/template-helpers.js b/test/template-helpers.js index 25f6fed3de..de06d74109 100644 --- a/test/template-helpers.js +++ b/test/template-helpers.js @@ -148,7 +148,19 @@ describe('helpers', () => { read: true, }; const html = helpers.spawnPrivilegeStates('guests', privs); - assert.equal(html, ''); + assert.equal(html, ` + +
+ +
+ +\t\t\t + +
+ +
+ + `); done(); });