9 lines
287 B
Dart
9 lines
287 B
Dart
import '../../base/test_base.dart';
|
|
import '../../scenarios/mailbox/search_mailbox_inbox_scenario.dart';
|
|
|
|
void main() {
|
|
TestBase().runPatrolTest(
|
|
description: 'Should see expected mailbox when searching mailboxes',
|
|
scenarioBuilder: ($) => SearchMailboxInboxScenario($),
|
|
);
|
|
} |