(self)
| 19 | """Test the MiniMax supplier entry in supplier.ts.""" |
| 20 | |
| 21 | def setUp(self): |
| 22 | supplier_path = os.path.join( |
| 23 | PROJECT_ROOT, "frontend", "src", "entity", "supplier.ts" |
| 24 | ) |
| 25 | with open(supplier_path, "r", encoding="utf-8") as f: |
| 26 | self.supplier_content = f.read() |
| 27 | |
| 28 | def test_minimax_icon_import_exists(self): |
| 29 | """MiniMax icon import statement should be present.""" |