Procházet zdrojové kódy

Add failing tests

bubble
Kyle Shockey před 6 roky
rodič
revize
d92a27bdab
1 změnil soubory, kde provedl 8 přidání a 0 odebrání
  1. +8
    -0
      test/core/utils.js

+ 8
- 0
test/core/utils.js Zobrazit soubor

@@ -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,


Načítá se…
Zrušit
Uložit