Skip to content

Commit dc097b5

Browse files
committed
Lint
1 parent 80dce6c commit dc097b5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ jobs:
3535
- run: npm ci
3636
- run: npm run build
3737

38-
3938
Test:
4039
runs-on: ubuntu-latest
4140
steps:

source/lib/trim-name.test.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ import trimName from './trim-name.js';
33

44
it('preserves regular names', () => {
55
expect(trimName('Regular name')).toBe('Regular name');
6-
expect(trimName('One-click extension manager')).toBe('One-click extension manager');
6+
expect(trimName('One-click extension manager')).toBe(
7+
'One-click extension manager',
8+
);
79
});
810

911
it('trims punctuation', () => {
@@ -13,7 +15,7 @@ it('trims punctuation', () => {
1315
expect(trimName('French semicolon : Do things')).toBe('French semicolon');
1416
});
1517

16-
it ('trims keywords', () => {
18+
it('trims keywords', () => {
1719
expect(trimName('Cake Search Extension')).toBe('Cake Search');
1820
expect(trimName('Coconuts for Chrome')).toBe('Coconuts');
1921
expect(trimName('Electric Fans for Google Chrome')).toBe('Electric Fans');

0 commit comments

Comments
 (0)