Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upCall identify on re-engagement #24
Conversation
| @@ -81,5 +81,11 @@ describe('LocalExperiment', () => { | |||
| exp.engage('test-device-1'); | |||
| expect(identifyCallsCount).toStrictEqual(1); | |||
| }); | |||
|
|
|||
| it('sets user property on re-engage', () => { | |||
roman-mazur
Jun 12, 2020
Collaborator
This test may be run in parallel with the previous one. Let's better move the second call directly to the original test:
exp.engage('test-device-1');
expect(identifyCallsCount).toStrictEqual(1);
exp.engage('test-device-1');
expect(identifyCallsCount).toStrictEqual(2);
This test may be run in parallel with the previous one. Let's better move the second call directly to the original test:
exp.engage('test-device-1');
expect(identifyCallsCount).toStrictEqual(1);
exp.engage('test-device-1');
expect(identifyCallsCount).toStrictEqual(2);
Change-type: minor Signed-off-by: Amit Solanki <amit@balena.io>
|
Thanks! |

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.

Change-type: minor
Signed-off-by: Amit Solanki amit@balena.io