Skip to content

Commit

Permalink
add vitest support #295
Browse files Browse the repository at this point in the history
- bump version to v0.3.0
  • Loading branch information
silkentrance committed Sep 24, 2022
1 parent 5dfd4c9 commit 216e741
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 16 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
]
}
},
"version": "0.2.2"
"version": "0.3.0"
}
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@testdeck/core",
"version": "0.2.2",
"version": "0.3.0",
"description": "Core framework for decorator based object oriented testing",
"keywords": [
"test",
Expand Down
6 changes: 3 additions & 3 deletions packages/di-typedi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@testdeck/di-typedi",
"version": "0.2.2",
"version": "0.3.0",
"description": "TypeDI IOC integration for testdeck",
"author": "Panayot Cankov",
"contributors": [
Expand All @@ -24,8 +24,8 @@
"tslint-fix": "tslint --project . --fix"
},
"devDependencies": {
"@testdeck/core": "^0.2.2",
"@testdeck/mocha": "^0.2.2",
"@testdeck/core": "^0.3.0",
"@testdeck/mocha": "^0.3.0",
"@types/mocha": "^9.0.0",
"reflect-metadata": "^0.1.13",
"typedi": "^0.8.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/jasmine/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@testdeck/jasmine",
"version": "0.2.2",
"version": "0.3.0",
"description": "Object oriented testing for the Jasmine test framework",
"keywords": [
"test",
Expand Down Expand Up @@ -35,7 +35,7 @@
"tslint-fix": "tslint --project . --fix"
},
"dependencies": {
"@testdeck/core": "^0.2.2"
"@testdeck/core": "^0.3.0"
},
"devDependencies": {
"@types/jasmine": "latest"
Expand Down
4 changes: 2 additions & 2 deletions packages/jest/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@testdeck/jest",
"version": "0.2.2",
"version": "0.3.0",
"description": "Object oriented testing for the Jest test framework",
"keywords": [
"test",
Expand Down Expand Up @@ -35,7 +35,7 @@
"tslint-fix": "tslint --project . --fix"
},
"dependencies": {
"@testdeck/core": "^0.2.2"
"@testdeck/core": "^0.3.0"
},
"devDependencies": {
"@types/jest": "latest"
Expand Down
8 changes: 2 additions & 6 deletions packages/mocha/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
{
"name": "@testdeck/mocha",
<<<<<<< HEAD
"version": "0.2.2",
=======
"version": "0.2.0",
>>>>>>> c5e7856 (add vitest support)
"version": "0.3.0",
"description": "Object oriented testing for the Mocha test framework",
"keywords": [
"test",
Expand Down Expand Up @@ -42,7 +38,7 @@
"tslint-fix": "tslint --project . --fix"
},
"dependencies": {
"@testdeck/core": "^0.2.2"
"@testdeck/core": "^0.3.0"
},
"nyc": {
"check-coverage": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/vitest/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@testdeck/vitest",
"version": "0.2.0",
"version": "0.3.0",
"description": "Object oriented testing for the Vitest test framework",
"keywords": [
"test",
Expand Down

0 comments on commit 216e741

Please sign in to comment.