matrix-public-archive/test/shared/lib
Eric Eastwood 59c9d3180e
Fix `18+` false positives with NSFW check (#279)
Was noticing false positives with our test room names like: `planet-1688081266353-room-18`

Before:
```regex
/(\b|_)18+(\b|_)/i
```

After:
```regex
/(\b|_|-|\s|^)18\+(\b|_|-|\s|$)/i
```
2023-06-29 18:58:53 -05:00
..
check-text-for-nsfw-tests.js Fix `18+` false positives with NSFW check (#279) 2023-06-29 18:58:53 -05:00
timestamp-utilties-tests.js Add a way to select time of day (#139) 2023-04-05 04:25:31 -05:00