mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

* Adds support for `flutter test --wasm`. * The test compilation flow is a bit different now, so that it supports compilers other than DDC. Specifically, when we run a set of unit tests, we generate a "switchboard" main function that imports each unit test and runs the main function for a specific one based off of a value set by the JS bootstrapping code. This way, there is one compile step and the same compile output is invoked for each unit test file. * Also, removes all references to `dart:html` from flutter/flutter. * Adds CI steps for running the framework unit tests with dart2wasm+skwasm * These steps are marked as `bringup: true`, so we don't know what kind of failures they will result in. Any failures they have will not block the tree at all yet while we're still in `bringup: true`. Once this PR is merged, I plan on looking at any failures and either fixing them or disabling them so we can get these CI steps running on presubmit. This fixes https://github.com/flutter/flutter/issues/126692
30 lines
1.1 KiB
Dart
30 lines
1.1 KiB
Dart
// 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.
|
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:web/web.dart' as web;
|
|
|
|
/// Whether the current browser is Firefox.
|
|
bool get isFirefox => web.window.navigator.userAgent.toLowerCase().contains('firefox');
|
|
|
|
/// Finds elements in the DOM tree rendered by the Flutter Web engine.
|
|
///
|
|
/// If the browser supports shadow DOM, looks in the shadow root under the
|
|
/// `<flt-glass-pane>` element. Otherwise, looks under `<flt-glass-pane>`
|
|
/// without penetrating the shadow DOM. In the latter case, if the application
|
|
/// creates platform views, this will also find platform view elements.
|
|
web.NodeList findElements(String selector) {
|
|
final web.Element? flutterView = web.document.querySelector('flutter-view');
|
|
|
|
if (flutterView == null) {
|
|
fail(
|
|
'Failed to locate <flutter-view>. Possible reasons:\n'
|
|
' - The application failed to start'
|
|
' - `findElements` was called before the application started'
|
|
);
|
|
}
|
|
|
|
return flutterView.querySelectorAll(selector);
|
|
}
|