mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
These packages come from Dart's pub system. I've removed files specific to dart:html and updated "package:" imports to use relative URLs. R=eseidel@chromium.org BUG=454613 Review URL: https://codereview.chromium.org/921863002
21 lines
403 B
Dart
21 lines
403 B
Dart
import "third_party/unittest/unittest.dart";
|
|
import "dart:sky.internals" as internals;
|
|
|
|
class _SkyConfig extends SimpleConfiguration {
|
|
void onDone(bool success) {
|
|
try {
|
|
super.onDone(success);
|
|
} catch (ex) {
|
|
print(ex.toString());
|
|
}
|
|
|
|
internals.notifyTestComplete("DONE");
|
|
}
|
|
}
|
|
|
|
final _singleton = new _SkyConfig();
|
|
|
|
void initUnit() {
|
|
unittestConfiguration = _singleton;
|
|
}
|