| Index: sdk/lib/_internal/pub/test/build/copies_browser_js_next_to_entrypoints_test.dart
|
| diff --git a/sdk/lib/_internal/pub/test/build/copies_browser_js_next_to_entrypoints_test.dart b/sdk/lib/_internal/pub/test/build/copies_browser_js_next_to_entrypoints_test.dart
|
| index a8e22f48a89fd890037e2f8a38760f486434244a..9bd4ff41a7d552df57b5a75013d94000d01bd7f8 100644
|
| --- a/sdk/lib/_internal/pub/test/build/copies_browser_js_next_to_entrypoints_test.dart
|
| +++ b/sdk/lib/_internal/pub/test/build/copies_browser_js_next_to_entrypoints_test.dart
|
| @@ -62,12 +62,14 @@ main() {
|
| pubGet();
|
|
|
| schedulePub(args: ["build"],
|
| - output: new RegExp(r"Built 8 files!"),
|
| + output: new RegExp(r"Built 12 files!"),
|
| exitCode: 0);
|
|
|
| d.dir(appPath, [
|
| d.dir('build', [
|
| d.matcherFile('file.dart.js', isNot(isEmpty)),
|
| + d.matcherFile('file.dart.precompiled.js', isNot(isEmpty)),
|
| + d.matcherFile('file.dart.js.map', isNot(isEmpty)),
|
| d.dir('packages', [d.dir('browser', [
|
| d.file('dart.js', 'contents of dart.js'),
|
| d.file('interop.js', 'contents of interop.js')
|
| @@ -77,7 +79,9 @@ main() {
|
| d.file('dart.js', 'contents of dart.js'),
|
| d.file('interop.js', 'contents of interop.js')
|
| ])]),
|
| - d.matcherFile('subfile.dart.js', isNot(isEmpty))
|
| + d.matcherFile('subfile.dart.js', isNot(isEmpty)),
|
| + d.matcherFile('subfile.dart.precompiled.js', isNot(isEmpty)),
|
| + d.matcherFile('subfile.dart.js.map', isNot(isEmpty))
|
| ])
|
| ])
|
| ]).validate();
|
|
|