This commit is contained in:
Grant Birkinbine 2022-05-13 15:29:38 -06:00
Родитель c00a764881
Коммит 2b868e862a
2 изменённых файлов: 17 добавлений и 0 удалений

9
.babelrc Normal file
Просмотреть файл

@ -0,0 +1,9 @@
{
"env": {
"test": {
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
}
}
}

Просмотреть файл

@ -0,0 +1,8 @@
import {triggerCheck} from '../../src/functions/trigger-check'
test('checks a message and finds a prefix trigger', async () => {
const prefixOnly = true
const body = '.deploy'
const trigger = '.deploy'
expect(await triggerCheck(prefixOnly, body, trigger)).toBe(true)
})