* @param {string} testId test ID * @param {"sass" | "scss"} syntax a sass syntax * @returns {string} resolved test ID
(testId, syntax)
| 4 | * @returns {string} resolved test ID |
| 5 | */ |
| 6 | function getTestId(testId, syntax) { |
| 7 | return `${syntax}/${testId}.${syntax}`; |
| 8 | } |
| 9 | |
| 10 | export default getTestId; |
no outgoing calls
searching dependent graphs…