0

有谁知道geb在 Grails中进行功能测试的正确依赖项是什么2.5.0

我尝试0.12.0Geb 插件的版本,但出现以下错误:

运行分叉测试应用程序时出错:没有这样的属性:类的 gebPluginDir:_Events

4

1 回答 1

3

根据插件页面,您的 BuildConfig.groovy 应该看起来像这样......

dependencies {
    compile ":geb:0.12.0"
}

plugins {
    test "org.grails.plugins:geb:0.12.0"
}

虽然这是我的配置(我使用 Spock 和 grails 2.4.5)...

dependencies {
    test "org.gebish:geb-spock:0.12.0"
}

plugins {
    test ":geb:0.12.0"
}
于 2015-07-16T14:33:11.683 回答