Skip to content

Commit 7299a08

Browse files
committed
Chore: Remove console.log from test
1 parent 5f567ca commit 7299a08

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/test/unit/sortBreakpoints.spec.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ const breakpoints = {
1010

1111
describe('sortBreakpoints', () => {
1212
it('sorts', () => {
13-
const b = sortBreakpoints(breakpoints);
14-
console.log(b);
15-
expect(b).toStrictEqual([
13+
expect(sortBreakpoints(breakpoints)).toStrictEqual([
1614
['one', 1],
1715
['two', 2],
1816
['three', 3],

0 commit comments

Comments
 (0)