From 3b758d69fb3032fd6971b54e56a4d13d7459331e Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Fri, 18 Aug 2023 11:36:51 +0530 Subject: chore: package name change --- tests/todo-app.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests') diff --git a/tests/todo-app.spec.ts b/tests/todo-app.spec.ts index 624efb9..1d04ae7 100644 --- a/tests/todo-app.spec.ts +++ b/tests/todo-app.spec.ts @@ -36,17 +36,17 @@ describe('todo-app example', () => { await submit('Buy Milk') expect($taskItems).toHaveLength(1) expect(getComputedStyle($taskItems[0]).getPropertyValue('--text')).toBe( - 'Buy Milk', + '"Buy Milk"', ) // Add the second item await submit('Kill all the non-believers') expect($taskItems).toHaveLength(2) expect(getComputedStyle($taskItems[0]).getPropertyValue('--text')).toBe( - 'Buy Milk', + '"Buy Milk"', ) expect(getComputedStyle($taskItems[1]).getPropertyValue('--text')).toBe( - 'Kill all the non-believers', + '"Kill all the non-believers"', ) }) -- cgit v1.3.1