Skip to content

Commit

Permalink
chore: uncomment test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
dOrgJelli committed Mar 16, 2023
1 parent b5dc785 commit b461dc4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/js/client/src/__tests__/e2e.spec.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
// import { typeTestCases } from "./core/type-test-cases";
// import { subinvokeCase } from "./core/wrap-features/subinvoke-case";
import { typeTestCases } from "./core/type-test-cases";
import { subinvokeCase } from "./core/wrap-features/subinvoke-case";
import { envTestCases } from "./core/wrap-features/env-case";
import { interfaceInvokeCase } from "./core/wrap-features/interface-implementation-case";

export const supportedImplementations = ["as", "rs"];
describe.each(supportedImplementations)(
"client <-> wrappers end to end",
(i) => {
// typeTestCases(i);
// subinvokeCase(i);
typeTestCases(i);
subinvokeCase(i);
envTestCases(i);
interfaceInvokeCase(i);
}
Expand Down

0 comments on commit b461dc4

Please sign in to comment.