Skip to content

Commit

Permalink
fix: deno interface import
Browse files Browse the repository at this point in the history
  • Loading branch information
Ludo Galabru committed May 20, 2022
1 parent cb97106 commit 2978301
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/billboard/tests/billboard_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Clarinet, Tx, Chain, Account, types } from 'https://deno.land/x/clarinet@v0.12.0/index.ts';
import { Clarinet, Tx, Chain, Account, types } from 'https://deno.land/x/clarinet@v1.0.0-beta1/index.ts';
import { assertEquals } from 'https://deno.land/[email protected]/testing/asserts.ts';

Clarinet.test({
Expand Down
2 changes: 1 addition & 1 deletion examples/counter/tests/counter_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Clarinet, Tx, Chain, Account, Contract, types } from '../../../deno/index.ts';
import { Clarinet, Tx, Chain, Account, Contract, types } from 'https://deno.land/x/[email protected]/index.ts';
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";

Clarinet.test({
Expand Down
3 changes: 1 addition & 2 deletions examples/simple-nft/tests/simple-nft.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// import { Clarinet, Tx, Chain, Account, Contract, types } from 'https://deno.land/x/[email protected]/index.ts';
import { Clarinet, Tx, Chain, Account, Contract, types } from '../../../deno/index.ts';
import { Clarinet, Tx, Chain, Account, Contract, types } from 'https://deno.land/x/[email protected]/index.ts';
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";

Clarinet.test({
Expand Down

0 comments on commit 2978301

Please sign in to comment.