diff --git a/test/index.ts b/test/index.ts index 92fe666..9668874 100644 --- a/test/index.ts +++ b/test/index.ts @@ -21,7 +21,7 @@ describe('projectId placeholder', () => { const PROJECT_ID = 'project-id'; it('should replace any {{projectId}} it finds', () => { - assert.deepEqual( + assert.deepStrictEqual( replaceProjectIdToken( { here: 'A {{projectId}} Z', @@ -77,7 +77,7 @@ describe('projectId placeholder', () => { }); it('should replace more than one {{projectId}}', () => { - assert.deepEqual( + assert.deepStrictEqual( replaceProjectIdToken( { here: 'A {{projectId}} M {{projectId}} Z', @@ -95,4 +95,4 @@ describe('projectId placeholder', () => { }); }, /Sorry, we cannot connect/); }); -}); \ No newline at end of file +});