Ver código fonte

Add failing tests

bubble
Kyle Shockey 6 anos atrás
pai
commit
d92a27bdab
1 arquivos alterados com 8 adições e 0 exclusões
  1. +8
    -0
      test/core/utils.js

+ 8
- 0
test/core/utils.js Ver arquivo

@@ -700,6 +700,14 @@ describe("utils", function() {
}
assertValidateParam(param, ["Required field is not provided"])

// valid integer, but 0 is falsy in JS
param = {
required: true,
type: "integer",
value: 0
}
assertValidateParam(param, [])

// valid integer
param = {
required: true,


Carregando…
Cancelar
Salvar