uvu test:io

This commit is contained in:
Leifer Mendez
2022-10-29 14:47:42 +02:00
parent 7593d6e564
commit 96b8a7626c
4 changed files with 34 additions and 9 deletions

0
packages/DRAFT.md Normal file
View File

View 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)

View File

@@ -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": [],

View File

@@ -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()