Files
BadNote/integration_test/perf_scroll_bench.dart
Akiba So d346cc2670
All checks were successful
CI / Windows build (push) Successful in 14m22s
feat: unified shell, diagnostics pack, native Office, sticky board
Make Surface remote debugging and classroom workflows viable: always-on
structured logs with one-click zip export, a single AppShell chrome,
OOXML PPTX/DOCX annotation without LibreOffice, and a first-class sticky
board. Also drop spike/legacy ink widgets and tighten pen feel
(predictor, PenInfoHistory, page-tile layer).

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-05 17:55:27 +08:00

17 lines
604 B
Dart

// Spike-based bench retired with own-canvas architecture.
// See docs/plans/surface-diagnostic-checklist.md for device gates.
// Replacement bench will target PenEditorScreen + PageTileCache.
import 'package:flutter_test/flutter_test.dart';
import 'package:integration_test/integration_test.dart';
void main() {
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
testWidgets('perf_scroll_bench retired — use Surface diagnostic checklist',
(tester) async {
// ignore: avoid_print
print('SKIP: spike_editor_pane deleted; run Surface checklist instead.');
}, skip: true);
}