diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index b72fa9f0..522a90a6 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -48,7 +48,7 @@ jobs: - name: Test run: yarn test:unit - test-unit: + test-integration: name: Test (Integration) runs-on: ubuntu-latest needs: install diff --git a/src/__snapshots__/prepareChainConfig.test.ts.snap b/src/__snapshots__/prepareChainConfig.test.ts.snap deleted file mode 100644 index 1cecc843..00000000 --- a/src/__snapshots__/prepareChainConfig.test.ts.snap +++ /dev/null @@ -1,69 +0,0 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`creates chain config with custom params 1`] = ` -{ - "arbitrum": { - "AllowDebugPrecompiles": true, - "DataAvailabilityCommittee": true, - "EnableArbOS": false, - "GenesisBlockNum": 1, - "InitialArbOSVersion": 11, - "InitialChainOwner": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045", - "MaxCodeSize": 40960, - "MaxInitCodeSize": 81920, - }, - "berlinBlock": 1, - "byzantiumBlock": 1, - "chainId": 69420, - "clique": { - "epoch": 1, - "period": 1, - }, - "constantinopleBlock": 1, - "daoForkBlock": null, - "daoForkSupport": false, - "eip150Block": 1, - "eip150Hash": "0x1100000000000000000000000000000000000000000000000000000000000000", - "eip155Block": 1, - "eip158Block": 1, - "homesteadBlock": 1, - "istanbulBlock": 1, - "londonBlock": 1, - "muirGlacierBlock": 1, - "petersburgBlock": 1, -} -`; - -exports[`creates chain config with defaults 1`] = ` -{ - "arbitrum": { - "AllowDebugPrecompiles": false, - "DataAvailabilityCommittee": false, - "EnableArbOS": true, - "GenesisBlockNum": 0, - "InitialArbOSVersion": 10, - "InitialChainOwner": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045", - "MaxCodeSize": 24576, - "MaxInitCodeSize": 49152, - }, - "berlinBlock": 0, - "byzantiumBlock": 0, - "chainId": 69420, - "clique": { - "epoch": 0, - "period": 0, - }, - "constantinopleBlock": 0, - "daoForkBlock": null, - "daoForkSupport": true, - "eip150Block": 0, - "eip150Hash": "0x0000000000000000000000000000000000000000000000000000000000000000", - "eip155Block": 0, - "eip158Block": 0, - "homesteadBlock": 0, - "istanbulBlock": 0, - "londonBlock": 0, - "muirGlacierBlock": 0, - "petersburgBlock": 0, -} -`;