Unverified Commit 1d2e62b7 authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

remove unsound mode web test (#118256)

parent 3cee38e8
......@@ -1236,7 +1236,6 @@ Future<void> _runWebLongRunningTests() async {
() => _runWebDebugTest('lib/framework_stack_trace.dart'),
() => _runWebDebugTest('lib/web_directory_loading.dart'),
() => _runWebDebugTest('test/test.dart'),
() => _runWebDebugTest('lib/null_assert_main.dart', enableNullSafety: true),
() => _runWebDebugTest('lib/null_safe_main.dart', enableNullSafety: true),
() => _runWebDebugTest('lib/web_define_loading.dart',
additionalArguments: <String>[
......
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// ignore_for_file: enable_null_safety
// @dart = 2.8
import 'null_enabled_api.dart';
void main() {
dynamic error;
try {
// Validate that a generated null assertion is thrown.
methodThatAcceptsNonNull(null);
} catch (err) {
error = err;
}
if (error is AssertionError) {
print('--- TEST SUCCEEDED ---');
} else {
print('--- TEST FAILED ---');
}
}
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