@@ -4,7 +4,7 @@ import { arc4, Bytes, Global, Uint64 } from '@algorandfoundation/algorand-typesc
44import { TestExecutionContext } from '@algorandfoundation/algorand-typescript-testing'
55import { DynamicArray , methodSelector } from '@algorandfoundation/algorand-typescript/arc4'
66import { encodingUtil } from '@algorandfoundation/puya-ts'
7- import { afterEach , beforeAll , describe , expect } from 'vitest'
7+ import { afterEach , describe , expect } from 'vitest'
88import { toBytes } from '../../src/impl/encoded-types/encoded-types'
99import { encodeAddress } from '../../src/impl/reference'
1010import { AnotherStruct , MyStruct , SignaturesContract } from '../artifacts/arc4-abi-method/contract.algo'
@@ -15,17 +15,13 @@ const _FUNDED_ACCOUNT_SPENDING = Uint64(1234)
1515
1616describe ( 'methodSelector' , async ( ) => {
1717 const ctx = new TestExecutionContext ( )
18- const [ test , localnetFixture ] = createArc4TestFixture ( 'tests/artifacts/arc4-abi-method/contract.algo.ts' , {
18+ const test = createArc4TestFixture ( 'tests/artifacts/arc4-abi-method/contract.algo.ts' , {
1919 SignaturesContract : {
2020 deployParams : { createParams : { extraProgramPages : undefined , method : 'create' } } ,
2121 funding : new AlgoAmount ( { microAlgos : Global . minBalance + _FUNDED_ACCOUNT_SPENDING } ) ,
2222 } ,
2323 } )
2424
25- beforeAll ( async ( ) => {
26- await localnetFixture . newScope ( )
27- } )
28-
2925 afterEach ( ( ) => {
3026 ctx . reset ( )
3127 } )
0 commit comments