Skip to content

Commit 7a93199

Browse files
committed
delete test
1 parent 39bda63 commit 7a93199

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

packages/minimal/test/lib/minimal.test.ts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -197,18 +197,6 @@ describe('Minimal', () => {
197197
expect(getCurrentHub().getClient()).toBe(TestClient.instance);
198198
});
199199

200-
test('Calls function on the client', done => {
201-
const s = jest.spyOn(TestClient.prototype, 'mySecretPublicMethod');
202-
getCurrentHub().withScope(() => {
203-
getCurrentHub().bindClient(new TestClient({}) as any);
204-
// eslint-disable-next-line deprecation/deprecation
205-
_callOnClient('mySecretPublicMethod', 'test');
206-
expect(s.mock.calls[0][0]).toBe('test');
207-
s.mockRestore();
208-
done();
209-
});
210-
});
211-
212200
test('does not throw an error when pushing different clients', () => {
213201
init({});
214202
expect(() => {

0 commit comments

Comments
 (0)