Merge pull request #396 from dart-lang/test_dep

add a temporary dep on package:test
diff --git a/benchmark/bench.dart b/benchmark/bench.dart
index f3b6204..84c234a 100644
--- a/benchmark/bench.dart
+++ b/benchmark/bench.dart
@@ -193,6 +193,7 @@
 // Copyright 2018 The Chromium Authors. All rights reserved.
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
+
 import 'package:flutter_web/material.dart';
 import 'package:flutter_web_ui/ui.dart' as ui;
 
diff --git a/lib/src/flutter_web.dart b/lib/src/flutter_web.dart
index 817e921..70bc74e 100644
--- a/lib/src/flutter_web.dart
+++ b/lib/src/flutter_web.dart
@@ -167,9 +167,13 @@
 name: $_samplePackageName
 ''';
 
+    // TODO(devoncarew): We only add the 'test' dep below as
+    // package:flutter_web_test incorrectly lists its test dependency as a dev
+    // dependency; it should list it as a regular dependency.
     if (includeFlutterWeb) {
       content += '''
 dependencies:
+  test: any
   flutter_web:
     git:
       url: https://github.com/flutter/flutter_web
diff --git a/tool/grind.dart b/tool/grind.dart
index abc42af..1a61eea 100644
--- a/tool/grind.dart
+++ b/tool/grind.dart
@@ -125,8 +125,7 @@
   final List<String> flutterPackages = [
     'flutter_web',
     'flutter_web_ui',
-    // TODO(devoncarew): package:flutter_web_test is not currently handled
-    // 'flutter_web_test',
+    'flutter_web_test',
   ];
 
   List<String> flutterLibraries = [];