Skip to content

Commit c1ad315

Browse files
chore: update @tabnews/config to version 0.5.0
1 parent 3f016e5 commit c1ad315

3 files changed

Lines changed: 9 additions & 6 deletions

File tree

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"devDependencies": {
2727
"@commitlint/cli": "19.8.0",
2828
"@commitlint/config-conventional": "19.8.0",
29-
"@tabnews/config": "0.4.2",
29+
"@tabnews/config": "0.5.0",
3030
"@testing-library/dom": "10.4.0",
3131
"@testing-library/jest-dom": "6.6.3",
3232
"@testing-library/react": "16.3.0",

packages/helpers/src/noop.test.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ import { identity, noop, returnNull } from './index.js';
33
describe('helpers', () => {
44
describe('No-Op and Identity Functions', () => {
55
const inputs = [, 42, '42', 'hello', null, undefined, { key: 'value' }, [1, 2, 3]];
6-
expect(inputs.length).toBe(8);
6+
7+
it('should have 8 test inputs', () => {
8+
expect(inputs).toHaveLength(8);
9+
});
710

811
describe('identity', () => {
912
it('should return the same value that is passed in', () => {

0 commit comments

Comments
 (0)