File tree Expand file tree Collapse file tree 5 files changed +33
-5
lines changed Expand file tree Collapse file tree 5 files changed +33
-5
lines changed Original file line number Diff line number Diff line change 11import { describe , it } from 'vitest' ;
22
3- describe . concurrent ( '' , ( ) => { } ) ;
3+ describe . concurrent ( '' , ( ) => {
4+ it ( '' , ( { expect } ) => {
5+
6+ } ) ;
7+ } ) ;
Original file line number Diff line number Diff line change 11import { describe , it } from 'vitest' ;
22
3- describe . concurrent ( '' , ( ) => { } ) ;
3+ describe . concurrent ( '' , ( ) => {
4+ it ( '' , ( { expect } ) => {
5+
6+ } ) ;
7+ } ) ;
Original file line number Diff line number Diff line change 11import { describe , it } from 'vitest' ;
22
3- describe . concurrent ( '' , ( ) => { } ) ;
3+ describe . concurrent ( '' , ( ) => {
4+ it ( '' , ( { expect } ) => {
5+
6+ } ) ;
7+ } ) ;
Original file line number Diff line number Diff line change 11import { describe , it } from 'vitest' ;
22
3- describe . concurrent ( '' , ( ) => { } ) ;
3+ describe . concurrent ( '' , ( ) => {
4+ it ( '' , ( { expect } ) => {
5+
6+ } ) ;
7+ } ) ;
Original file line number Diff line number Diff line change 11import { describe , it } from 'vitest' ;
2+ import { readPB , readQ } from '../../../src/map/utils/read' ;
23
3- describe . concurrent ( '' , ( ) => { } ) ;
4+ describe . concurrent ( 'read pb' , ( ) => {
5+ it ( '' , async ( { expect } ) => {
6+ const req = readPB ( '' ) ;
7+ } ) ;
8+ } ) ;
9+
10+
11+ describe . concurrent ( 'read query' , ( ) => {
12+ it ( '' , async ( { expect } ) => {
13+ const req = readQ ( '' ) ; // TODO: Mocking requests
14+ } ) ;
15+ } ) ;
You can’t perform that action at this time.
0 commit comments