(s)
| 76 | * @returns {import("../lib/css/syntax").NumberToken} parsed number token |
| 77 | */ |
| 78 | const num = (s) => |
| 79 | /** @type {import("../lib/css/syntax").NumberToken} */ ( |
| 80 | parseAComponentValue(s) |
| 81 | ); |
| 82 | const int = num("123"); |
| 83 | expect([int.numericValue, int.typeFlag, int.sign]).toEqual([ |
| 84 | 123, |
no test coverage detected