diff --git a/.env b/.env index a771a78..93c6a59 100644 --- a/.env +++ b/.env @@ -1,2 +1,2 @@ # The version of the Inco Lightning test docker images to use -DOCKER_IMAGE_TAG=v0.7.5 \ No newline at end of file +DOCKER_IMAGE_TAG=v0.7.6 \ No newline at end of file diff --git a/.gitignore b/.gitignore index 486af4a..6d7d5f4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # dependencies (bun install) node_modules +build/ # output out diff --git a/backend/src/test/lightning.local.e2e.test.ts b/backend/src/test/lightning.local.e2e.test.ts index c6f8013..cacf488 100644 --- a/backend/src/test/lightning.local.e2e.test.ts +++ b/backend/src/test/lightning.local.e2e.test.ts @@ -5,7 +5,7 @@ import { describe } from 'vitest'; import { runE2ETest } from './lightning-test.js'; describe(`Lightning Local Node E2E`, { timeout: 50_000 }, async () => { - const zap = await Lightning.localNode('devnet'); + const zap = await Lightning.localNode('testnet'); runE2ETest(zap, { chain: anvil, senderPrivKey: zap.deployment.senderPrivateKey as Hex, diff --git a/backend/src/test/react-example/src/index.tsx b/backend/src/test/react-example/src/index.tsx index 5345cba..16cc0ea 100644 --- a/backend/src/test/react-example/src/index.tsx +++ b/backend/src/test/react-example/src/index.tsx @@ -8,7 +8,7 @@ root.render( { let privateKeyHex: Hex; if (chain === anvil) { - const zap = await Lightning.localNode('devnet'); + const zap = await Lightning.localNode('testnet'); privateKeyHex = zap.deployment.senderPrivateKey as Hex; } else { privateKeyHex = privateKey; diff --git a/backend/src/test/react-example/test/Inco.spec.tsx b/backend/src/test/react-example/test/Inco.spec.tsx index 3f3807d..59ec283 100644 --- a/backend/src/test/react-example/test/Inco.spec.tsx +++ b/backend/src/test/react-example/test/Inco.spec.tsx @@ -42,7 +42,7 @@ async function deployAddTwo(cfg: E2EConfig): Promise
{ } test('renders IncoTest', { timeout: 60000 }, async () => { - const zap = await Lightning.localNode('devnet'); + const zap = await Lightning.localNode('testnet'); const senderPrivKey = zap.deployment.senderPrivateKey as Hex; const cfg: E2EConfig = { senderPrivKey: senderPrivKey, @@ -53,7 +53,7 @@ test('renders IncoTest', { timeout: 60000 }, async () => { const { unmount } = render(