summaryrefslogtreecommitdiff
path: root/tests/todo-app.spec.ts
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2023-08-18 11:36:51 +0530
committerAkshay Nair <phenax5@gmail.com>2023-08-18 11:36:51 +0530
commit3b758d69fb3032fd6971b54e56a4d13d7459331e (patch)
tree32b86d02b5aa52d764150293a3bd99fee619c4ea /tests/todo-app.spec.ts
parent5531e4f4d045125c55fc0be157dafb55c560ca49 (diff)
downloadcss-everything-3b758d69fb3032fd6971b54e56a4d13d7459331e.tar.gz
css-everything-3b758d69fb3032fd6971b54e56a4d13d7459331e.zip
chore: package name change
Diffstat (limited to 'tests/todo-app.spec.ts')
-rw-r--r--tests/todo-app.spec.ts6
1 files changed, 3 insertions, 3 deletions
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"',
)
})