Skip to content

Commit

Permalink
fix import in test files
Browse files Browse the repository at this point in the history
  • Loading branch information
phn210 committed Nov 14, 2023
1 parent 438446d commit b3016b7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@auxo-dev/auxo-libs",
"version": "0.2.7",
"version": "0.2.8",
"description": "",
"author": "",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/Bit255.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Scalar } from 'o1js';
import { Bit255 } from './Bit255';
import { Bit255 } from './Bit255.js';

describe('CustomScalar', () => {
it('Should xor correctly', async () => {
Expand Down
2 changes: 1 addition & 1 deletion src/CustomScalar.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Scalar } from 'o1js';
import { CustomScalar } from './CustomScalar';
import { CustomScalar } from './CustomScalar.js';

describe('CustomScalar', () => {
it('Should convert correctly', async () => {
Expand Down
4 changes: 2 additions & 2 deletions src/DynamicArray.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Field, Group, Provable, Scalar } from 'o1js';
import { DynamicArray } from './DynamicArray';
import { CustomScalar } from './CustomScalar';
import { DynamicArray } from './DynamicArray.js';
import { CustomScalar } from './CustomScalar.js';

describe('DynamicArray', () => {
const MAX_HEIGHT = 2 ** 5;
Expand Down
2 changes: 1 addition & 1 deletion src/IPFSHash.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Provable } from 'o1js';
import { IPFSHash } from './IPFSHash';
import { IPFSHash } from './IPFSHash.js';

describe('DynamicArray', () => {
it('Should be provable code', async () => {
Expand Down

0 comments on commit b3016b7

Please sign in to comment.