Skip to content

Commit 6fbdb68

Browse files
committed
chore: updated version
1 parent 4afb05a commit 6fbdb68

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "smelly-cli",
3-
"version": "0.0.14",
3+
"version": "0.0.15",
44
"private": false,
55
"description": "Find out the smells in your tests, suggestions for correction and the theory behind them",
66
"bin": "build/index.js",

detector/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "smelly-detector",
33
"private": false,
4-
"version": "0.0.11",
4+
"version": "0.0.12",
55
"main": "build/src/index.js",
66
"description": "Find out the smells in your tests, suggestions for correction and the theory behind them",
77
"exports": {

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vscode/src/dataset/typescript/script_with_jest_mocks.test.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,8 @@ jest.mock('../src/middleware/nuxt');
1313
jest.mock('../src/middleware/error');
1414
jest.mock('../src/middleware/timing');
1515

16-
describe('server: server', () => {});
16+
describe('server: server', () => {
17+
it('fake test', () => {
18+
expect(true).toBe(true);
19+
});
20+
});

0 commit comments

Comments
 (0)