Skip to content

Commit

Permalink
chore: update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
lrazovic authored and JuaniRios committed Jan 16, 2025
1 parent 2caefb6 commit e07eec3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration-tests/chopsticks/src/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export class ChainSetup {
// Needed to execute storage migrations within the new WASM before running tests.
const head = this.polimec.head;
console.log(`✅ Polimec chain is at block ${head.number}`);
console.log('✅ Running storage migrations...');
console.log('✅ Producing a new block...');
const new_block = await this.polimec?.newBlock();
console.log(`✅ Polimec chain is at block ${new_block.number}`);
expect(new_block.number === head.number + 1, 'Block number should be incremented by 1');
Expand All @@ -69,7 +69,7 @@ export class ChainSetup {
private async setupPolimec(polimec_storage: unknown) {
const file = Bun.file(POLIMEC_WASM);

// Note: the tests are inteded to use a pre-production, locally compiled runtime, that's why we throw an error.
// Note: the tests are intended to use a pre-production, locally compiled runtime, that's why we throw an error.
if (!(await file.exists())) {
throw new Error(
'Polimec runtime not found! Please build it by running `cargo b -r -p polimec-runtime` before executing the tests.',
Expand Down

0 comments on commit e07eec3

Please sign in to comment.