Skip to content

Commit c255153

Browse files
committed
remove duplicate tests
1 parent bb0f888 commit c255153

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

packages/utils/test/severity.test.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,8 @@ import { severityFromString, validSeverityLevels } from '../src/severity';
22

33
describe('severityFromString()', () => {
44
describe('normalize warn and warning', () => {
5-
test('handles warn and warning', () => {
5+
test("converts 'warn' to 'warning'", () => {
66
expect(severityFromString('warn')).toBe('warning');
7-
expect(severityFromString('warning')).toBe('warning');
8-
});
9-
test('handles warn and warning', () => {
10-
expect(severityFromString('warn')).toBe('warning');
11-
expect(severityFromString('warning')).toBe('warning');
127
});
138
});
149
describe('default to log', () => {

0 commit comments

Comments
 (0)