I'm using WebStorm IDE and test api which is named unittest before. The test works fine using the command:
pub run test:test test/sample.dart
/test/sample.dart
library testproject.sample;
import 'package:test/test.dart';
void main() {
test('Testing', () {
expect(true, isTrue);
});
}
but when i tried to run/debug using WebStorm DartUnit the test, the console shows this error:
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)