-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Description
I can't set breakpoint in Dartium in below code:
@TestOn("browser")
import 'package:test/test.dart';
void main() {
group('simple tests', () {
test("2+2", () {
expect(2+2, 4);
});
});
}
It worked fine in 1.21 but since 1.23+ (maybe 1.22 too) it doesn't work.
To confirm:
- serve project: pub serve test --port 8081
- run test with pause: pub run test -p dartium --pub-serve=8081 test/app_test.dart --pause-after-load
- try to set breakpoint in Dartium on line: expect(2+2, 4); and release pause in Dartium
P.S. Breakpoints in regular code works perfect.
P.P.S Issue related only for browser tests, vm tests works ok.
Lisenish
Metadata
Metadata
Assignees
Labels
No labels