Skip to content

Commit 778f8b0

Browse files
committed
updated fs plugin uri in fs resolver test
1 parent 089fd26 commit 778f8b0

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

packages/js/plugins/uri-resolvers/file-system-resolver/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
"@polywrap/plugin-js": "0.10.0-pre.7"
2525
},
2626
"devDependencies": {
27+
"@polywrap/client-config-builder-js": "0.10.0-pre.7",
2728
"@polywrap/client-js": "0.10.0-pre.7",
2829
"@polywrap/fs-plugin-js": "0.10.0-pre.7",
2930
"@types/jest": "26.0.8",

packages/js/plugins/uri-resolvers/file-system-resolver/src/__tests__/e2e.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jest.setTimeout(360000);
1010
const simpleWrapperPath = `${GetPathToTestWrappers()}/wasm-as/simple`;
1111
const simpleWrapperUri = new Uri(`fs/${simpleWrapperPath}/build`);
1212

13-
describe("Filesystem plugin", () => {
13+
describe("Filesystem Resolver plugin", () => {
1414
let client: PolywrapClient;
1515

1616
beforeAll(async () => {

packages/js/plugins/uri-resolvers/file-system-resolver/src/__tests__/helpers/getClient.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { PolywrapClient } from "@polywrap/client-js";
77
import { ExtendableUriResolver } from "@polywrap/uri-resolver-extensions-js";
88
import { fileSystemPlugin } from "@polywrap/fs-plugin-js";
99
import { fileSystemResolverPlugin } from "../..";
10-
import { defaultPackages } from "@polywrap/client-config-builder-js";
10+
import { defaultInterfaces } from "@polywrap/client-config-builder-js";
1111

1212
export const getClient = () => {
1313
return new PolywrapClient(
@@ -26,7 +26,7 @@ export const getClient = () => {
2626
package: fileSystemResolverPlugin({}),
2727
},
2828
{
29-
uri: defaultPackages.fileSystem,
29+
uri: defaultInterfaces.fileSystem,
3030
package: fileSystemPlugin({}),
3131
},
3232
new ExtendableUriResolver(),

0 commit comments

Comments
 (0)