We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ac0978 commit bfb8303Copy full SHA for bfb8303
tests/unit/.stubs/ClientContextStub.ts
@@ -1,3 +1,4 @@
1
+import { HeadersInit } from 'node-fetch';
2
import IClientContext, { ClientConfig } from '../../../lib/contracts/IClientContext';
3
import IConnectionProvider from '../../../lib/connection/contracts/IConnectionProvider';
4
import IDriver from '../../../lib/contracts/IDriver';
@@ -48,4 +49,8 @@ export default class ClientContextStub implements IClientContext {
48
49
public async getDriver(): Promise<IDriver> {
50
return this.driver;
51
}
52
+
53
+ public async getAuthHeaders(): Promise<HeadersInit> {
54
+ return {};
55
+ }
56
0 commit comments