Skip to content
Snippets Groups Projects
Commit b6ffde4e authored by Natalie Weizenbaum's avatar Natalie Weizenbaum
Browse files

Fix some tests that were broken in the library tag removal.

Closes #1382

R=rnystrom@google.com

Review URL: https://codereview.chromium.org//1590723005 .
parent 31c48c97
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,7 @@ main() {
d.libPubspec("foo", "0.0.1"),
d.dir("lib", [
d.file("foo.dart", """
foo() => 'footext';
""")
])
]).create();
......@@ -24,6 +25,7 @@ main() {
}),
d.dir("lib", [
d.file("lib.dart", """
lib() => 'libtext';
""")
]),
d.dir("web", [
......
......@@ -30,6 +30,7 @@ import "other.dart";
void main() => print(TOKEN);
"""),
d.file("other.dart", """
const TOKEN = "before";
""")
])
]).create();
......
......@@ -22,6 +22,7 @@ main() {
}),
d.dir("lib", [
d.file("foo.dart", """
const TOKEN = "before";
foo() => TOKEN;
"""),
d.file("transformer.dart", dartTransformer("munge"))
......
......@@ -28,6 +28,7 @@ import "other.dart";
void main() => print(TOKEN);
"""),
d.file("other.dart", """
const TOKEN = "before";
""")
])
]).create();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment