mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-18 03:29:15 +00:00
uvu test:io
This commit is contained in:
0
packages/DRAFT.md
Normal file
0
packages/DRAFT.md
Normal file
@@ -12,7 +12,9 @@
|
||||
- [x] addAnswer
|
||||
- [ ] addKeyword: Opciones
|
||||
- [ ] addAnswer: Opciones
|
||||
- [ ] Si ha contactado previamente. Seguir continuida
|
||||
- [ ] Retornar SQL
|
||||
- [ ] Retornar JSON
|
||||
- [ ] Recibir JSON
|
||||
|
||||
```js
|
||||
// bootstrap.js Como iniciar el provider
|
||||
@@ -98,3 +100,12 @@ answerOne.push(otherAnswer)
|
||||
|
||||
inout.addKeywords(['hola', 'hi', 'ola'])
|
||||
```
|
||||
|
||||
**Comunidad**
|
||||
|
||||
> Forma parte de este proyecto.
|
||||
|
||||
- [Discord](https://link.codigoencasa.com/DISCORD)
|
||||
- [Twitter](https://twitter.com/leifermendez)
|
||||
- [Youtube](https://www.youtube.com/watch?v=5lEMCeWEJ8o&list=PL_WGMLcL4jzWPhdhcUyhbFU6bC0oJd2BR)
|
||||
- [Telegram](https://t.me/leifermendez)
|
||||
@@ -11,6 +11,7 @@
|
||||
"format:write": "prettier --write .",
|
||||
"lint:check": "eslint .",
|
||||
"lint:fix": "eslint --fix .",
|
||||
"test:io": "node ../../node_modules/uvu/bin.js tests",
|
||||
"build:io": "npm run format:write && npm run lint:fix && npm run io:rollup"
|
||||
},
|
||||
"keywords": [],
|
||||
|
||||
@@ -1,12 +1,25 @@
|
||||
const { test, suite } = require('uvu')
|
||||
const { snapshot } = require('uvu/assert')
|
||||
|
||||
const botTest = suite('bot-function')
|
||||
|
||||
test(``, async () => {
|
||||
|
||||
|
||||
const { snapshot, is } = require('uvu/assert')
|
||||
|
||||
test('sum', () => {
|
||||
assert.type(math.sum, 'function')
|
||||
assert.is(math.sum(1, 2), 3)
|
||||
assert.is(math.sum(-1, -2), -3)
|
||||
assert.is(math.sum(-1, 1), 0)
|
||||
})
|
||||
|
||||
botTest.run()
|
||||
test('div', () => {
|
||||
assert.type(math.div, 'function')
|
||||
assert.is(math.div(1, 2), 0.5)
|
||||
assert.is(math.div(-1, -2), 0.5)
|
||||
assert.is(math.div(-1, 1), -1)
|
||||
})
|
||||
|
||||
test('mod', () => {
|
||||
assert.type(math.mod, 'function')
|
||||
assert.is(math.mod(1, 2), 1)
|
||||
assert.is(math.mod(-3, -2), -1)
|
||||
assert.is(math.mod(7, 4), 3)
|
||||
})
|
||||
|
||||
test.run()
|
||||
|
||||
Reference in New Issue
Block a user