Skip to content

Commit ed8a62a

Browse files
committed
chore: fix test
1 parent ce2ac3c commit ed8a62a

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

packages/config-builder/src/__tests__/client-config-builder.spec.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,11 +180,12 @@ describe("Client config builder", () => {
180180

181181
expect(config).toBeTruthy();
182182

183-
// Expect the "node" default config to have the following bundles:
183+
// Expect the default config to have the following bundles:
184184
// "sys", "web3"
185185
const expectedConfig = new ClientConfigBuilder()
186186
.addBundle("sys")
187-
.addBundle("web3");
187+
.addBundle("web3")
188+
.config;
188189

189190
expect(JSON.stringify(config)).toBe(
190191
JSON.stringify(expectedConfig)

0 commit comments

Comments
 (0)