Skip to content

Commit

Permalink
Merge branch 'main' into basic-bitcoin-with-bitcoinjs-lib
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann authored May 16, 2024
2 parents 6f8b0f9 + 6952375 commit 4c77483
Show file tree
Hide file tree
Showing 36 changed files with 4,253 additions and 73 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ jobs:
"examples/motoko_examples/superheroes",
"examples/motoko_examples/threshold_ecdsa",
"examples/motoko_examples/whoami",
"examples/nest",
"examples/new",
"examples/notify_raw",
"examples/null_example",
Expand Down
2 changes: 1 addition & 1 deletion examples/autoreload/test/tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export function getTests(canisterId: string): Test[] {
},
{
name: 'waiting for Azle to reload',
wait: 30_000
wait: 90_000
},
{
name: '/test-changed-rapidly',
Expand Down
2 changes: 1 addition & 1 deletion examples/large_files/test/tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { rm } from 'fs/promises';
import { join } from 'path';
import { v4 } from 'uuid';

import { AZLE_UPLOADER_IDENTITY_NAME } from '../../../src/compiler/file_uploader/uploader_identity';
import { AZLE_UPLOADER_IDENTITY_NAME } from '../../../src/compiler/uploader_identity';
import { generateTestFileOfSize } from './generateTestFiles';

export function getTests(canisterId: string): Test[] {
Expand Down
3 changes: 3 additions & 0 deletions examples/nest/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.azle
.dfx
node_modules
9 changes: 9 additions & 0 deletions examples/nest/dfx.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"canisters": {
"api": {
"type": "azle",
"main": "src/main.ts",
"esm_externals": ["@nestjs/microservices", "@nestjs/websockets"]
}
}
}
Loading

0 comments on commit 4c77483

Please sign in to comment.