We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 053f5a2 commit 87fddd9Copy full SHA for 87fddd9
test/server.spec.ts
@@ -83,7 +83,7 @@ describe('Integrator SDK', () => {
83
await integrator.scenarios.run(1, {});
84
throw new Error('Should throw an error.');
85
} catch (err: unknown) {
86
- if (!(err instanceof IntegratorError)) throw new Error('Should throw MakeError.');
+ if (!(err instanceof IntegratorError)) throw new Error('Should throw IntegratorError.');
87
88
expect(err.name).toBe('MakeError');
89
expect(err.message).toBe('Validation failed for 1 parameter(s).');
0 commit comments