MiniMax icon PNG file should exist.
(self)
| 142 | """Test that the MiniMax icon file exists and is valid.""" |
| 143 | |
| 144 | def test_icon_file_exists(self): |
| 145 | """MiniMax icon PNG file should exist.""" |
| 146 | icon_path = os.path.join( |
| 147 | PROJECT_ROOT, |
| 148 | "frontend", |
| 149 | "src", |
| 150 | "assets", |
| 151 | "model", |
| 152 | "icon_minimax_colorful.png", |
| 153 | ) |
| 154 | self.assertTrue(os.path.exists(icon_path), "MiniMax icon file should exist") |
| 155 | |
| 156 | def test_icon_is_png(self): |
| 157 | """MiniMax icon should be a valid PNG file.""" |