(str: string)
| 2 | import { removeDevtools } from './remove-devtools' |
| 3 | |
| 4 | const removeEmptySpace = (str: string) => { |
| 5 | return str.replace(/\s/g, '').trim() |
| 6 | } |
| 7 | |
| 8 | describe('remove-devtools', () => { |
| 9 | test('it removes devtools if Imported directly', () => { |
no outgoing calls
no test coverage detected