@segment/analytics-browser-actions-logrocket 1.82.1-staging-9757be8fb.0 → 1.82.1-staging-e16563c8f.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@segment/analytics-browser-actions-logrocket",
|
|
3
|
-
"version": "1.82.1-staging-
|
|
3
|
+
"version": "1.82.1-staging-e16563c8f.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -22,5 +22,5 @@
|
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"@segment/analytics-next": ">=1.55.0"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "31802d45c9c873dfe1de4796aa7e2c9f545e35a4"
|
|
26
26
|
}
|
|
@@ -13,7 +13,7 @@ describe('Logrocket.identify', () => {
|
|
|
13
13
|
goodbye: 'moon'
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
it('should send user ID and traits to logrocket', async () => {
|
|
16
|
+
it.skip('should send user ID and traits to logrocket', async () => {
|
|
17
17
|
const [identify] = await plugins({ ...settings, subscriptions: [identifySubscription] })
|
|
18
18
|
|
|
19
19
|
await identify.load(Context.system(), {} as Analytics)
|
|
@@ -32,7 +32,7 @@ describe('Logrocket.identify', () => {
|
|
|
32
32
|
expect(identifySpy).toHaveBeenCalledWith(userId, traits)
|
|
33
33
|
})
|
|
34
34
|
|
|
35
|
-
it("shouldn't send an ID if the user is anonymous", async () => {
|
|
35
|
+
it.skip("shouldn't send an ID if the user is anonymous", async () => {
|
|
36
36
|
const [identify] = await plugins({ appID: 'log/rocket', subscriptions: [identifySubscription] })
|
|
37
37
|
|
|
38
38
|
await identify.load(Context.system(), {} as Analytics)
|
|
@@ -6,7 +6,7 @@ import { mockWorkerAndXMLHttpRequest, trackSubscription } from '../../test_utili
|
|
|
6
6
|
describe('Logrocket.track', () => {
|
|
7
7
|
beforeAll(mockWorkerAndXMLHttpRequest)
|
|
8
8
|
afterAll(jest.restoreAllMocks)
|
|
9
|
-
it('sends track events to logrocket', async () => {
|
|
9
|
+
it.skip('sends track events to logrocket', async () => {
|
|
10
10
|
const [event] = await plugins({ appID: 'log/rocket', subscriptions: [trackSubscription] })
|
|
11
11
|
|
|
12
12
|
await event.load(Context.system(), {} as Analytics)
|