blob: 718a1d1d7e2f54dbf388c4959065b6d7b7c7e9dd [file] [log] [blame]
import 'dart:async';
import 'package:expect/minitest.dart';
main(message, replyTo) {
var command = message.first;
expect(command, 'START');
new Timer(const Duration(milliseconds: 10), () {
replyTo.send('DONE');
});
}