Skip to content

Commit 87ee64c

Browse files
committed
fix: update example imports and regenerate bun lockfile
1 parent 6ba52c3 commit 87ee64c

File tree

20 files changed

+19
-19
lines changed

20 files changed

+19
-19
lines changed

bun.lockb

-96 Bytes
Binary file not shown.

examples/clock/tests/global-setup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { PocketIcServer } from '@dfinity/pic';
1+
import { PocketIcServer } from 'pic-js-mops';
22

33
module.exports = async function (): Promise<void> {
44
const pic = await PocketIcServer.start({

examples/clock/tests/src/clock.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { resolve } from 'node:path';
22
import { Principal } from '@dfinity/principal';
3-
import { Actor, generateRandomIdentity, PocketIc } from '@dfinity/pic';
3+
import { Actor, generateRandomIdentity, PocketIc } from 'pic-js-mops';
44
import { Identity } from '@dfinity/agent';
55

66
import { _SERVICE, idlFactory } from '../../declarations/clock.did';

examples/clock/tests/types.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { PocketIcServer } from '@dfinity/pic';
1+
import { PocketIcServer } from 'pic-js-mops';
22

33
declare global {
44
declare var __PIC__: PocketIcServer;

examples/counter/tests/global-setup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { GlobalSetupContext } from 'vitest/node';
2-
import { PocketIcServer } from '@dfinity/pic';
2+
import { PocketIcServer } from 'pic-js-mops';
33

44
let pic: PocketIcServer | undefined;
55

examples/counter/tests/src/counter.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { resolve } from 'node:path';
22
import { Principal } from '@dfinity/principal';
3-
import { Actor, PocketIc } from '@dfinity/pic';
3+
import { Actor, PocketIc } from 'pic-js-mops';
44
import { IDL } from '@dfinity/candid';
55
import { describe, beforeEach, afterEach, it, expect, inject } from 'vitest';
66

examples/google_search/tests/global-setup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { PocketIcServer } from '@dfinity/pic';
1+
import { PocketIcServer } from 'pic-js-mops';
22

33
module.exports = async function (): Promise<void> {
44
const pic = await PocketIcServer.start({

examples/google_search/tests/src/google-search.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { resolve } from 'node:path';
22
import { Principal } from '@dfinity/principal';
3-
import { PocketIc, DeferredActor } from '@dfinity/pic';
3+
import { PocketIc, DeferredActor } from 'pic-js-mops';
44

55
import { _SERVICE, idlFactory } from '../../declarations/google_search.did';
66

examples/google_search/tests/types.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { PocketIcServer } from '@dfinity/pic';
1+
import { PocketIcServer } from 'pic-js-mops';
22

33
declare global {
44
declare var __PIC__: PocketIcServer;

examples/multicanister/tests/global-setup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { PocketIcServer } from '@dfinity/pic';
1+
import { PocketIcServer } from 'pic-js-mops';
22

33
module.exports = async function (): Promise<void> {
44
const pic = await PocketIcServer.start();

0 commit comments

Comments
 (0)