Using teaspoon and jasmine to test some JS. The js is putting things in 'window'.
Is there a way to completely reload the page for every spec so that this 'window' is newly initialized.
Using teaspoon and jasmine to test some JS. The js is putting things in 'window'.
Is there a way to completely reload the page for every spec so that this 'window' is newly initialized.
Copyright © 2021 Jogjafile Inc.
I am not sure if reloading the browser will be a good idea. You could run into
Some of your tests did a full page reload
jasmine error and it could make your tests slow. What I would do is take advantage of thebeforeEach
,beforeAll
,afterEach
,afterAll
hooks.beforeEach
runs before everyit
test in adescribe
block andbeforeAll
runs once before all of theit
tests inside of adescribe
block.afterEach
runs after everyit
tests in adescribe
block andafterAll
runs once after all of theit
tests inside of adescribe
block.What you can do is take advantage of these hooks and appropriately add and remove stuff to the window and do clean up after each test (in maybe
afterEach
orafterAll
) hooks.