(testName, input, expected)
| 148 | }); |
| 149 | |
| 150 | function testExpectError(testName, input, expected) { |
| 151 | it(testName, () => { |
| 152 | expect(utils.toClassName(input)).to.match(expected); |
| 153 | }); |
| 154 | } |
| 155 | |
| 156 | function testExpectNoChange(testName, input) { |
| 157 | it(testName, () => { |