Skip to content

Commit

Permalink
chore: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
nobkd committed Apr 4, 2023
1 parent d73468d commit 0ef4e03
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
4 changes: 1 addition & 3 deletions test/bg/action.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { describe, it } from 'vitest';

describe.concurrent('', () => {

});
describe.concurrent('', () => {});
8 changes: 4 additions & 4 deletions test/map/utils/zoom.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ import { describe, it } from 'vitest';
import { getMapZoom } from '../../../src/map/utils/zoom';

describe.concurrent('', () => {
it('zoom > 19', ({expect}) => {
it('zoom > 19', ({ expect }) => {
const res = getMapZoom(1);

expect(res).toBeTypeOf('number');
expect(res).toBe(19);
});

it('zoom < 0', ({expect}) => {
it('zoom < 0', ({ expect }) => {
const res = getMapZoom(100000000);

expect(res).toBeTypeOf('number');
expect(res).toBe(0);
});
Expand Down

0 comments on commit 0ef4e03

Please sign in to comment.