reenable test with SDK fix (#13)

* reenable test with SDK fix
* ignore analysis issue caused by scheduled_test API
diff --git a/test/list_test.dart b/test/list_test.dart
index 8729a38..114f2f9 100644
--- a/test/list_test.dart
+++ b/test/list_test.dart
@@ -305,7 +305,7 @@
       }),
           completion(unorderedEquals(
               [p.join("foo", "baz", "bang"), p.join("foo", "baz", "qux")])));
-    }, skip: "Broken by sdk#28015.");
+    });
 
     test("lists a subdirectory that sometimes exists", () {
       d.dir("top", [
@@ -356,6 +356,9 @@
         var glob = new Glob(pattern,
             recursive: recursive, caseSensitive: caseSensitive);
 
+        // TODO(kevmoo) - need to get off scheduled_test to fix this
+        // https://github.com/dart-lang/glob/issues/14
+        // ignore: return_of_invalid_type
         return glob
             .list(root: sandbox, followLinks: followLinks)
             .map((entity) => p.relative(entity.path, from: sandbox))