Jasmine JavaScript Testing Framework Practice Test
Jasmine JavaScript Testing Framework Jasmine Test Suite Organization 3
Where should shared test state variables typically be declared in a describe block?
Select your answer
A
At the top of the describe block, outside any it() or beforeEach()
B
Inside each individual it() block
C
In module-level global variables
D
Exclusively inside beforeAll()
Hint