错误[ModuleException] Doctrine2:无法访问模块

时间:2019-06-20 02:43:30

标签: codeception

我无法遵循https://codeception.com/docs/modules/Doctrine2中的文档。这个错误 files <- dir() rdata_files <- files[grepl(".RData", files)] rdata_files for (fname in rdata_files) { obj_names <- load(fname) cat(fname, "\n") print(obj_names[grepl("^max", obj_names)]) }

我想在单元测试中访问[ModuleException] Doctrine2: Module can't be accessed。原则$entityManger具有一个返回bootstrap.php的{​​{1}}函数。

createEntityManager
entityManager

1 个答案:

答案 0 :(得分:0)

您的问题是您在codeception.yml文件中配置了单元套件,因此您的unit.suite.yml被忽略了。

从codeception.yml中删除此部分,或删除unit.suite.yml并更新codeception.yml


fetch(myRequest)
    .then(resp => resp.text())
    .then(text => {
        //text is html
    })