dart-sdk/tests/html/async_oneshot.dart

12 lines
233 B
Dart

import 'dart:async';
import 'package:unittest/unittest.dart';
main(message, replyTo) {
var command = message.first;
expect(command, 'START');
new Timer(const Duration(milliseconds: 10), () {
replyTo.send('DONE');
});
}