web.php 中已定义的常量版本

Constant version already defined in web.php

当 运行 在 Laravel Dusk 中进行多项测试时,我得到错误 Constant version already defined in web.php,因为 web.php 在每次测试之前是 运行 . 如何预防?

添加

    protected $preserveGlobalState = FALSE;
    protected $runTestInSeparateProcess = TRUE;

到 DuskTestClass

来源constant already defined article