Skip to content

Commit e57381f

Browse files
committed
fix and add lint
1 parent 1464db0 commit e57381f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/cli-repl/src/uri-generator.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ describe('uri-generator.generate-uri', () => {
1212

1313
context('when no URI is provided', () => {
1414
it('handles host', () => {
15-
expect(generateUri({ _: [], host: 'localhost'})).to.equal('mongodb://localhost:27017')
15+
expect(generateUri({ _: [], host: 'localhost' })).to.equal('mongodb://localhost:27017');
1616
});
1717
it('handles port', () => {
18-
expect(generateUri({ _: [], port: '27018' })).to.equal('mongodb://127.0.0.1:27018')
18+
expect(generateUri({ _: [], port: '27018' })).to.equal('mongodb://127.0.0.1:27018');
1919
});
2020
});
2121

0 commit comments

Comments
 (0)