aves_mio/.flutter/dev/devicelab/test/framework/browser_test.dart
Fabio Micheluz 2c988f959b
Some checks are pending
Quality check / Flutter analysis (push) Waiting to run
Quality check / CodeQL analysis (java-kotlin) (push) Waiting to run
first commit
2026-02-19 13:25:23 +01:00

48 lines
1.7 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_devicelab/framework/browser.dart';
import '../common.dart';
import 'browser_test_json_samples.dart';
void main() {
group('BlinkTraceEvent works with Chrome 89+', () {
// Used to test 'false' results
final unrelatedPhX = BlinkTraceEvent.fromJson(unrelatedPhXJson);
final anotherUnrelated = BlinkTraceEvent.fromJson(anotherUnrelatedJson);
test('isBeginFrame', () {
final event = BlinkTraceEvent.fromJson(beginMainFrameJson_89plus);
expect(event.isBeginFrame, isTrue);
expect(unrelatedPhX.isBeginFrame, isFalse);
expect(anotherUnrelated.isBeginFrame, isFalse);
});
test('isUpdateAllLifecyclePhases', () {
final event = BlinkTraceEvent.fromJson(updateLifecycleJson_89plus);
expect(event.isUpdateAllLifecyclePhases, isTrue);
expect(unrelatedPhX.isUpdateAllLifecyclePhases, isFalse);
expect(anotherUnrelated.isUpdateAllLifecyclePhases, isFalse);
});
test('isBeginMeasuredFrame', () {
final event = BlinkTraceEvent.fromJson(beginMeasuredFrameJson_89plus);
expect(event.isBeginMeasuredFrame, isTrue);
expect(unrelatedPhX.isBeginMeasuredFrame, isFalse);
expect(anotherUnrelated.isBeginMeasuredFrame, isFalse);
});
test('isEndMeasuredFrame', () {
final event = BlinkTraceEvent.fromJson(endMeasuredFrameJson_89plus);
expect(event.isEndMeasuredFrame, isTrue);
expect(unrelatedPhX.isEndMeasuredFrame, isFalse);
expect(anotherUnrelated.isEndMeasuredFrame, isFalse);
});
});
}