(expression)
| 10 | }); |
| 11 | |
| 12 | async function test(expression) { |
| 13 | InspectorTest.logMessage(`Testing ${expression}...`); |
| 14 | const {result} = await Protocol.Runtime.evaluate({expression}); |
| 15 | if ('exceptionDetails' in result) { |
| 16 | InspectorTest.logMessage(result.exceptionDetails); |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | InspectorTest.runAsyncTestSuite([ |
| 21 | async function testFloatFormatter() { |
no test coverage detected