Robin Malfait f12c0e1fa5
Improve css expectations in tests (#5819)
* use String.raw for css escapes

This will allow us to write code like:
```css
.mobile\:font-bold {}
```
Instead of
```css
.mobile\\:font-bold {}
```

Which resembles "real" css way better in our tests.

* use String.raw in integration tests as well
2021-10-18 12:08:48 +02:00

3 lines
176 B
JavaScript

// Small helper to allow for css, html and JavaScript highlighting / formatting in most editors.
module.exports = { css: String.raw, html: String.raw, javascript: String.raw }