我正在使用测试库运行省道测试。
pub run test -p dartium当执行此命令时,我将获得以下错误,下载了dartium和dart sdk,并在系统路径中下载。
Failed to start Dartium: No such file or directory
Command: dartium --user-data-dir=/tmp/dart_test_cwDGGO 发布于 2015-06-08 19:27:44
我错过了符号链接。添加符号链接后,测试工作正常。
ln -s /path/to/chrome /path/to/dartium其中/path/to/chrome是dartium目录中的铬可执行文件。
https://stackoverflow.com/questions/30675583
复制相似问题