File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -300,7 +300,7 @@ describe('session', () => {
300
300
expect ( status . functionCalled ) . toEqual ( true )
301
301
} )
302
302
303
- it ( 'should proxy run to the begined transaction' , async ( ) => {
303
+ it ( 'should proxy run to the begun transaction' , async ( ) => {
304
304
const connection = mockBeginWithSuccess ( newFakeConnection ( ) )
305
305
const session = newSessionWithConnection ( connection , false , FETCH_ALL )
306
306
// @ts -ignore
@@ -318,7 +318,7 @@ describe('session', () => {
318
318
expect ( run ) . toHaveBeenCalledWith ( query , params )
319
319
} )
320
320
321
- it ( 'should proxy isOpen to the begined transaction' , async ( ) => {
321
+ it ( 'should proxy isOpen to the begun transaction' , async ( ) => {
322
322
const connection = mockBeginWithSuccess ( newFakeConnection ( ) )
323
323
const session = newSessionWithConnection ( connection , false , FETCH_ALL )
324
324
const isOpen = jest . spyOn ( Transaction . prototype , 'isOpen' ) . mockImplementationOnce ( ( ) => true )
You can’t perform that action at this time.
0 commit comments