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 0ce1b7a commit 199532eCopy full SHA for 199532e
tests/sdk/analytics.test.ts
@@ -26,7 +26,7 @@ test('test_analytics_processor_flush_post_request_data_match_ananlytics_data', a
26
aP.trackFeature("myFeature2");
27
await aP.flush();
28
expect(fetch).toHaveBeenCalledTimes(1);
29
- expect(fetch).toHaveBeenCalledWith('http://testUrlanalytics/flags/', expect.objectContaining({
+ expect(fetch).toHaveBeenCalledWith('http://testUrl/analytics/flags/', expect.objectContaining({
30
body: '{"myFeature1":1,"myFeature2":1}',
31
headers: { 'Content-Type': 'application/json', 'X-Environment-Key': 'test-key' },
32
method: 'POST',
0 commit comments