Skip to content

Commit 84be869

Browse files
committedMar 9, 2019
fix: husky commitlint not work, replace invalid test
1 parent 1ab7c50 commit 84be869

File tree

4 files changed

+54
-11
lines changed

4 files changed

+54
-11
lines changed
 

‎package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"@material-ui/core": "3.9.0",
5757
"@material-ui/icons": "3.0.2",
5858
"@verdaccio/babel-preset": "0.0.4",
59-
"@verdaccio/types": "4.1.4",
59+
"@verdaccio/types": "5.0.0-beta.3",
6060
"autosuggest-highlight": "3.1.1",
6161
"bundlesize": "0.17.1",
6262
"codecov": "3.2.0",
@@ -178,7 +178,8 @@
178178
"preferGlobal": true,
179179
"husky": {
180180
"hooks": {
181-
"pre-commit": "lint-staged && commitlint -e $GIT_PARAMS"
181+
"pre-commit": "lint-staged",
182+
"commit-msg": "commitlint -e $GIT_PARAMS"
182183
}
183184
},
184185
"lint-staged": {

‎test/unit/api/__snapshots__/api.publish.spec.js.snap

+23
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,26 @@ exports[`Publish endpoints - publish package should change the existing package
4646
],
4747
}
4848
`;
49+
50+
exports[`Publish endpoints - publish package should star a package 1`] = `
51+
[MockFunction] {
52+
"calls": Array [
53+
Array [
54+
"verdaccio",
55+
Object {
56+
"users": Object {
57+
"verdaccio": true,
58+
},
59+
},
60+
"15-e53a77096b0ee33e",
61+
[Function],
62+
],
63+
],
64+
"results": Array [
65+
Object {
66+
"type": "return",
67+
"value": undefined,
68+
},
69+
],
70+
}
71+
`;

‎test/unit/api/api.publish.spec.js

+24-5
Original file line numberDiff line numberDiff line change
@@ -254,11 +254,30 @@ describe('Publish endpoints - publish package', () => {
254254
expect(next).toHaveBeenCalledWith(new Error(API_ERROR.BAD_PACKAGE_DATA));
255255
});
256256

257-
test('should throw an error for un-implemented star calls', () => {
258-
const storage = {};
259-
req.body._rev = REVISION_MOCK;
260-
req.body.users = {};
257+
test('should star a package', () => {
258+
const storage = {
259+
changePackage: jest.fn(),
260+
getPackage({ name, req, callback }) {
261+
callback(null, {
262+
users: {},
263+
});
264+
},
265+
};
266+
req = {
267+
params: {
268+
package: 'verdaccio',
269+
},
270+
body: {
271+
_rev: REVISION_MOCK,
272+
users: {
273+
verdaccio: true,
274+
},
275+
},
276+
remote_user: {
277+
name: 'verdaccio',
278+
},
279+
};
261280
publishPackage(storage)(req, res, next);
262-
expect(next).toHaveBeenCalledWith(new Error('npm star| un-star calls are not implemented'));
281+
expect(storage.changePackage).toMatchSnapshot();
263282
});
264283
});

‎yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -1372,10 +1372,10 @@
13721372
resolved "https://registry.verdaccio.org/@verdaccio%2fstreams/-/streams-2.0.0-beta.0.tgz#af8c7e673a3c368deacc8024c6f5671aa2ec32ac"
13731373
integrity sha512-EdVF6RP0abRNT0RfgLCsqLNv7FOpm+BpzMZoaQuQGHSBQRj7OTM8ft5mpbJ40rYVXKv6D8xyU0vUnoRl09ah6g==
13741374

1375-
"@verdaccio/types@4.1.4":
1376-
version "4.1.4"
1377-
resolved "https://registry.verdaccio.org/@verdaccio%2ftypes/-/types-4.1.4.tgz#6144410b9fd63d916aa279378a4946c701a82586"
1378-
integrity sha512-0kNIQvMakoHIk1dpgnXVgQ5qwxJGTtMpJkLZKiN5WpLi5yuQtjc+kD/0EWDV4164pKg1KUU6YFLpbcXWxR8zvQ==
1375+
"@verdaccio/types@5.0.0-beta.3":
1376+
version "5.0.0-beta.3"
1377+
resolved "https://registry.npmjs.org/@verdaccio/types/-/types-5.0.0-beta.3.tgz#f6c9fd31a40b2be96fe080c49d7f4a1239413318"
1378+
integrity sha512-qPwE0bjDhXXVK7Gwg0O6RargAE7/AseVcZhcZEnf25RAra5ZL3MiM0dUUlierMc9XcPVjVHwTasAnF54Qmz9bg==
13791379

13801380
"@webassemblyjs/ast@1.7.8":
13811381
version "1.7.8"

0 commit comments

Comments
 (0)
Please sign in to comment.