Skip to content

Commit 8f79883

Browse files
committed
spacing
1 parent 0b7ca4f commit 8f79883

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

ts/__tests__/Iterable.spec.ts

+3
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,23 @@ beforeEach(() => {
2626

2727
test("set/get email", () => {
2828
Iterable.setEmail("[email protected]")
29+
2930
return Iterable.getEmail().then(email => {
3031
expect(email).toBe("[email protected]")
3132
})
3233
})
3334

3435
test("set/get userId", () => {
3536
Iterable.setUserId("user1")
37+
3638
return Iterable.getUserId().then(userId => {
3739
expect(userId).toBe("user1")
3840
})
3941
})
4042

4143
test("disable device for current user", () => {
4244
Iterable.disableDeviceForCurrentUser()
45+
4346
expect(MockRNIterableAPI.disableDeviceForCurrentUser).toBeCalled()
4447
})
4548

0 commit comments

Comments
 (0)