X-Git-Url: http://git.squeep.com/?p=squeep-indieauth-helper;a=blobdiff_plain;f=test%2Flib%2Fcommon.js;fp=test%2Flib%2Fcommon.js;h=20911c1d5d745eb0749df5dd69a58cbd173163f2;hp=7ebc91b45b6cf81c47306b48a7cfc62c5ceffe78;hb=3d41f4dd33d59d0c11c97ddeb51ab22d851b93e6;hpb=322b4e9de706d50a0eff6596e414f635c62deb54 diff --git a/test/lib/common.js b/test/lib/common.js index 7ebc91b..20911c1 100644 --- a/test/lib/common.js +++ b/test/lib/common.js @@ -9,12 +9,12 @@ describe('common', function () { it('names a file path', function () { const filename = 'lib/foo/bar.js'; const result = common.fileScope(filename)('baz'); - assert.strictEqual(result, 'bar:baz'); + assert(result.endsWith(':bar:baz')); }); it('names an index path', function () { const filename = 'lib/foo/index.js'; const result = common.fileScope(filename)('baz'); - assert.strictEqual(result, 'foo:baz'); + assert(result.endsWith(':foo:baz')); }); }); // fileScope