Skip to content

Commit

Permalink
add test for orchestrator
Browse files Browse the repository at this point in the history
  • Loading branch information
girazoki committed Feb 1, 2024
1 parent 0e563f3 commit ca7bfe8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
File renamed without changes.
11 changes: 10 additions & 1 deletion packages/e2e/src/author-inherent-mock.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ describe.runIf(process.env.CI || process.env.RUN_ALL)('Nimbus author inherent mo
await teardown()
})

it('Tanssi build blocks', async () => {
it('Tanssi container build blocks', async () => {
const { dev, teardown } = await setupContext({
endpoint: 'wss://fraa-dancebox-3001-rpc.a.dancebox.tanssi.network',
db: !process.env.RUN_TESTS_WITHOUT_DB ? 'e2e-tests-db.sqlite' : undefined,
Expand All @@ -20,6 +20,15 @@ describe.runIf(process.env.CI || process.env.RUN_ALL)('Nimbus author inherent mo
await teardown()
})

it('Tanssi orchestrator build blocks', async () => {
const { dev, teardown } = await setupContext({
endpoint: 'wss://dancebox.tanssi-api.network',
db: !process.env.RUN_TESTS_WITHOUT_DB ? 'e2e-tests-db.sqlite' : undefined,
})
await dev.newBlock({ count: 2 })
await teardown()
})

it('Moonbeam build blocks', async () => {
const { dev, teardown } = await setupContext({
endpoint: 'wss://wss.api.moonbeam.network',
Expand Down

0 comments on commit ca7bfe8

Please sign in to comment.