aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/ui/app/actions.spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/ui/app/actions.spec.js')
-rw-r--r--test/unit/ui/app/actions.spec.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/unit/ui/app/actions.spec.js b/test/unit/ui/app/actions.spec.js
index 8d7de8b02..d27521088 100644
--- a/test/unit/ui/app/actions.spec.js
+++ b/test/unit/ui/app/actions.spec.js
@@ -1308,6 +1308,30 @@ describe('Actions', () => {
})
})
+ describe.only('#setCompletedOnboarding', () => {
+ let markAllNoticesReadSpy, completeOnboardingSpy
+
+ beforeEach(() => {
+ markAllNoticesReadSpy = sinon.stub(background, 'markAllNoticesRead')
+ completeOnboardingSpy = sinon.stub(background, 'completeOnboarding')
+ })
+
+ after(() => {
+ markAllNoticesReadSpy.restore()
+ completeOnboardingSpy.restore()
+ })
+
+ it('', (done) => {
+ const store = mockStore()
+ store.dispatch(actions.setCompletedOnboarding())
+ .then(() => {
+ assert.equal(markAllNoticesReadSpy.callCount, 1)
+ assert.equal(completeOnboardingSpy.callCount, 1)
+ })
+ done()
+ })
+ })
+
describe('#updateNetworkNonce', () => {
let getTransactionCountSpy