BREAKING CHANGE From the app thread, in both TypeScript and Dart, you bootstrap the app using `application` instead of `asyncApplication`. Before: ```TypeScript platform([WORKER_APP_PLATFORM]) .asyncApplication(setupWebWorker, optionalProviders?) .then((ref) => ref.bootstrap(RootComponent)); ``` Now: ```TypeScript platform([WORKER_APP_PLATFORM]) .application([WORKER_APP_APPLICATION]) .bootstrap(RootComponent); ``` closes #5857 Closes #5862
26 lines
976 B
Dart
26 lines
976 B
Dart
library angular2.test.web_workers.debug_tools.bootstrap;
|
|
|
|
import 'package:angular2/src/platform/server/html_adapter.dart';
|
|
import "package:angular2/testing_internal.dart";
|
|
import "package:angular2/src/core/reflection/reflection_capabilities.dart";
|
|
import "package:angular2/src/core/reflection/reflection.dart";
|
|
import "package:angular2/src/platform/worker_app_common.dart" show WORKER_APP_APPLICATION_COMMON;
|
|
import "package:angular2/platform/worker_app.dart" show WORKER_APP_PLATFORM;
|
|
import "package:angular2/core.dart";
|
|
import "../shared/web_worker_test_util.dart";
|
|
import "dart:convert";
|
|
|
|
main() {
|
|
Html5LibDomAdapter.makeCurrent();
|
|
testSetup();
|
|
|
|
describe("WORKER_APP_COMMON_PROVIDERS", () {
|
|
it("should be able to load in a Dart VM", () {
|
|
reflector.reflectionCapabilities = new ReflectionCapabilities();
|
|
var buses = createPairedMessageBuses();
|
|
platform([WORKER_APP_PLATFORM])
|
|
.application([WORKER_APP_APPLICATION_COMMON]);
|
|
});
|
|
});
|
|
}
|