Skip to content

Qvil Blog

[Javscript] Remove Whitespace with Jest, Emotion

Javascript, Regex, Jest, Emotion1 min read

Jest Test code에서 공백(Whitespace) 때문에 테스트를 통과 못하는 경우 필요

jest-whitespace

정규식의 \s는 공백(Whitespace)를 뜻하므로 replace해서 해결

1export const removeWhitespace = (value) => value.replace(/\s/g, "");

References