인벤토리 include 필터 문구 수정

This commit is contained in:
JiWoong Sul
2025-10-22 18:48:00 +09:00
parent cefcfaac0d
commit a14133df52
7 changed files with 12 additions and 9 deletions

View File

@@ -38,7 +38,7 @@ void main() {
);
await tester.pumpAndSettle();
expect(find.text('라인 포함'), findsWidgets);
expect(find.text('상세정보 포함'), findsWidgets);
expect(tester.takeException(), isNull);
await tester.tap(find.widgetWithText(ShadButton, '입고 등록'));
@@ -69,7 +69,7 @@ void main() {
);
await tester.pumpAndSettle();
expect(find.text('라인 포함'), findsWidgets);
expect(find.text('상세정보 포함'), findsWidgets);
expect(find.text('고객 포함'), findsWidgets);
expect(tester.takeException(), isNull);
});
@@ -90,7 +90,7 @@ void main() {
);
await tester.pumpAndSettle();
expect(find.text('라인 포함'), findsWidgets);
expect(find.text('상세정보 포함'), findsWidgets);
expect(tester.takeException(), isNull);
});
}