Unverified Commit 4c0145d9 authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

Fix web size test for new world (#34063)

parent b847ba5a
...@@ -239,7 +239,7 @@ class WebCompileTest { ...@@ -239,7 +239,7 @@ class WebCompileTest {
rmTree(sampleDir); rmTree(sampleDir);
await inDirectory<void>(Directory.systemTemp, () async { await inDirectory<void>(Directory.systemTemp, () async {
await flutter('create', options: <String>['--template=app', sampleAppName]); await flutter('create', options: <String>['--template=app', '--web', sampleAppName]);
await inDirectory(sampleDir, () async { await inDirectory(sampleDir, () async {
await flutter('packages', options: <String>['get']); await flutter('packages', options: <String>['get']);
await evalFlutter('build', options: <String>[ await evalFlutter('build', options: <String>[
......
<!-- Copyright 2019 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. -->
<!DOCTYPE html>
<html>
<head>
<title>Hello, World</title>
</head>
<body>
<script src="main.dart.js"></script>
</body>
</html>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment