我尝试使用之前的所有和之后的所有方法,使用 frisby.js 创建一套测试,因为实际上,frisby并不支持这种方法。所以,这就是我想要做的事情:
Image graph = new Image(Files.newInputStream(file));
ImageView graphView = new ImageView(graph);
graph = null;
graphView.setImage(null);
System.gc();
如果我将before / afterAll之前的方法更改为before / afterEach之前正在运行,但是当我使用before / afterAll时,控制台上会出现此错误:
消息: ReferenceError:未定义beforeAll 堆栈跟踪: ReferenceError:未定义beforeAll
我的项目中安装了jasmine版本2.3.2,所以,我不知道我需要做什么来整合这个方法。
答案 0 :(得分:1)
答案 1 :(得分:-1)
使用jasmine库而不是jasmine-node库。第二个不支持beforeAll和afterAll方法。
1- npm install -g jasmine
2-茉莉花初始
3-在spec文件夹中写下测试:
.row.no-gutter [class*='col-']:last-child {
margin-right:-1px;
margin-left:1px;
}
4-运行测试 - >茉莉