Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(347)

Side by Side Diff: sdk/lib/_internal/pub_generated/test/transformer/runs_a_third_party_transformer_on_a_local_transformer_test.dart

Issue 896623005: Use native async/await support in pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS d.file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 library pub_tests;
6
7 import '../descriptor.dart' as d;
8 import '../test_pub.dart';
9 import '../serve/utils.dart';
10
11 main() {
12 initConfig();
13 withBarbackVersions("any", () {
14 integration("runs a third-party transformer on a local transformer", () {
15 d.dir(
16 "foo",
17 [
18 d.libPubspec("foo", '1.0.0'),
19 d.dir("lib", [d.file("transformer.dart", dartTransformer('foo'))]) ]).create();
20
21 d.dir(appPath, [d.pubspec({
22 "name": "myapp",
23 "transformers": ["foo/transformer", "myapp/transformer"],
24 "dependencies": {
25 "foo": {
26 "path": "../foo"
27 }
28 }
29 }),
30 d.dir("lib", [d.file("transformer.dart", dartTransformer('myapp'))]) ,
31 d.dir("web", [d.file("main.dart", 'const TOKEN = "main.dart";')])]). create();
32
33 createLockFile('myapp', sandbox: ['foo'], pkg: ['barback']);
34
35 pubServe();
36 requestShouldSucceed(
37 "main.dart",
38 'const TOKEN = "((main.dart, foo), (myapp, foo))";');
39 endPubServe();
40 });
41 });
42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698