You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: templates/javascript/tests/client/client.mustache
+5-11Lines changed: 5 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -3,15 +3,15 @@
3
3
// @ts-nocheck Failing tests will have type errors, but we cannot suppress them even with @ts-expect-error because it doesn't work for a block of lines.
4
4
import { describe, test, expect } from 'vitest';
5
5
6
-
import { {{client}}, {{#lambda.titlecase}}{{client}}{{/lambda.titlecase}} } from '{{{import}}}';
6
+
import { {{{clientName}}} } from '{{{importPackage}}}';
7
7
import { nodeEchoRequester } from '@algolia/requester-testing';
8
8
import type { EchoResponse } from '@algolia/requester-testing';
9
9
10
10
const appId = 'test-app-id';
11
11
const apiKey = 'test-api-key';
12
12
13
-
function createClient(): {{#lambda.titlecase}}{{client}}{{/lambda.titlecase}}{
0 commit comments