aboutsummaryrefslogtreecommitdiff
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
parent5531e4f4d045125c55fc0be157dafb55c560ca49 (diff)
downloadcss-everything-3b758d69fb3032fd6971b54e56a4d13d7459331e.tar.gz
css-everything-3b758d69fb3032fd6971b54e56a4d13d7459331e.zip
chore: package name change
Diffstat (limited to '')
-rw-r--r--package.json6
-rw-r--r--tests/todo-app.spec.ts6
2 files changed, 6 insertions, 6 deletions
diff --git a/package.json b/package.json
index f213ad1..b3b0b2c 100644
--- a/package.json
+++ b/package.json
@@ -1,14 +1,14 @@
{
- "name": "@cssx/render",
+ "name": "@css-everything/render",
"version": "0.0.0",
"main": "src/index.ts",
- "repository": "__",
+ "repository": "https://github.com/phenax/css-everything",
"author": "Akshay Nair <phenax5@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsc && node esbuild.js",
"serve": "serve -p 3000 .",
- "format": "prettier --write './{src,tests}/**/*.{ts,html,css}' './examples/**/*.{html,css}'",
+ "format": "prettier --write './{src,tests}/**/*.{ts,html,css}'",
"lint": "eslint ./src",
"fix": "yarn lint --fix && yarn format",
"test": "jest"
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"',
)
})