Skip to content

Commit

Permalink
test: migrate ts test to vitest (#1707)
Browse files Browse the repository at this point in the history
* chore(prettierrc): add schema and replace `jsxBracketSameLine` with `bracketSameLine`

* test: migrate ts test to `vitest`
  • Loading branch information
marcalexiei committed Jan 2, 2024
1 parent 44ab5f3 commit 0aabd04
Show file tree
Hide file tree
Showing 37 changed files with 4,869 additions and 5,544 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -27,3 +27,6 @@ out

# ignore packaged releases
*.tgz

# vitest temp / cache files
tsconfig.vitest-temp.json
5 changes: 2 additions & 3 deletions .npmignore
Expand Up @@ -8,8 +8,6 @@ bin/
.eslintrc
.gitignore
bower.json
gulpfile.js
karma.conf.js
.github
.circleci
.vscode
Expand All @@ -19,4 +17,5 @@ rollup.config.mjs
.codeclimate.yml
.coveralls.yml
tsconfig*.json
.prettierrc
.prettierrc.json
vitest.workspace.mts
3 changes: 2 additions & 1 deletion .prettierrc → .prettierrc.json
@@ -1,6 +1,7 @@
{
"$schema": "https://json.schemastore.org/prettierrc.json",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"bracketSameLine": false,
"printWidth": 100,
"semi": true,
"singleQuote": true,
Expand Down

0 comments on commit 0aabd04

Please sign in to comment.