在file.js中,我提示用户一些问题,然后有一个handleThing()函数,该函数只有一个switch语句,基本上说
如果x> 1则=“ hello world”;否则,a =“再见”
在test.js中,我想调用handleThing()然后测试x。我首先在test.js中全局设置x = 0,我想编写一个像这样的测试:
describe(“ handleThing”,function(){
执行handleThing();
it(“应该分配x”,function(){
期望(x).to.equal(“再见”)
}}