我正在使用 WebStorm IDE 并测试之前名为unittest的 api 。使用以下命令测试可以正常工作:
发布运行测试:测试测试/sample.dart
/test/sample.dart
library testproject.sample;
import 'package:test/test.dart';
void main() {
test('Testing', () {
expect(true, isTrue);
});
}
但是当我尝试使用 WebStorm DartUnit 运行/调试测试时,控制台显示此错误:
Unhandled exception:
Uncaught Error: Load Error: FileSystemException: Cannot open file, path = 'C:\Users\dummy\Desktop\testproject\packages\unittest\unittest.dart' (OS Error: The system cannot find the path specified.
, errno = 3)