41bda23a77
wrapping_collections_test was modified since JSNative is deprecated and
was causing the test to fail ('class js has no getter for JSNative').
Bug:
Change-Id: Icc8951bce4be1152984b66769676080f89e5f1f7
Reviewed-on: https://dart-review.googlesource.com/9420
Commit-Queue: Ben Konyi <bkonyi@google.com>
Reviewed-by: Erik Ernst <eernst@google.com>
Reviewed-by: Terry Lucas <terry@google.com>
33 lines
934 B
Dart
33 lines
934 B
Dart
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
import 'dart:html';
|
|
import 'dart:isolate';
|
|
|
|
import 'package:unittest/unittest.dart';
|
|
import 'package:unittest/html_config.dart';
|
|
|
|
worker(message) {
|
|
var uri = message[0];
|
|
var replyTo = message[1];
|
|
try {
|
|
var url = Url.createObjectUrl(new Blob([''], 'application/javascript'));
|
|
Url.revokeObjectUrl(url);
|
|
replyTo.send('Hello from Worker');
|
|
} catch (e) {
|
|
replyTo.send('Error: $e');
|
|
}
|
|
}
|
|
|
|
main() {
|
|
useHtmlConfiguration();
|
|
|
|
test('Use Worker API in Worker', () {
|
|
var response = new ReceivePort();
|
|
var remote = Isolate.spawn(worker, ['', response.sendPort]);
|
|
remote.then((_) => response.first).then(
|
|
expectAsync((reply) => expect(reply, equals('Hello from Worker'))));
|
|
});
|
|
}
|