Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Drip
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
backup
Drip
Commits
80cabee6
Commit
80cabee6
authored
6 years ago
by
tina
Browse files
Options
Downloads
Patches
Plain Diff
adds more meaningful messages to assertion errors
parent
21d6e24f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/sympto/index.js
+13
-13
13 additions, 13 deletions
lib/sympto/index.js
with
13 additions
and
13 deletions
lib/sympto/index.js
+
13
−
13
View file @
80cabee6
...
@@ -100,20 +100,20 @@ export default function getSymptoThermalStatus(cycleInfo) {
...
@@ -100,20 +100,20 @@ export default function getSymptoThermalStatus(cycleInfo) {
function
throwIfArgsAreNotInRequiredFormat
(
cycles
)
{
function
throwIfArgsAreNotInRequiredFormat
(
cycles
)
{
cycles
.
forEach
(
cycle
=>
{
cycles
.
forEach
(
cycle
=>
{
assert
.
ok
(
Array
.
isArray
(
cycle
))
assert
.
ok
(
Array
.
isArray
(
cycle
)
,
"
Cycles must be arrays.
"
)
assert
.
ok
(
cycle
.
length
>
0
)
//what about 2 cycles of 1 day each?!
assert
.
ok
(
cycle
.
length
>
0
,
"
Cycle must not be empty.
"
)
//what about 2 cycles of 1 day each?!
assert
.
ok
(
cycle
[
0
].
bleeding
!==
null
)
assert
.
ok
(
cycle
[
0
].
bleeding
!==
null
,
"
First cycle day should have bleeding.
"
)
assert
.
equal
(
typeof
cycle
[
0
].
bleeding
,
'
object
'
,
"
First cycle day must contain bleeding value
"
)
assert
.
equal
(
typeof
cycle
[
0
].
bleeding
,
'
object
'
,
"
First cycle day must contain bleeding value
.
"
)
assert
.
equal
(
typeof
cycle
[
0
].
bleeding
.
value
,
'
number
'
)
assert
.
equal
(
typeof
cycle
[
0
].
bleeding
.
value
,
'
number
'
,
"
First cycle day bleeding value is a number.
"
)
cycle
.
forEach
(
day
=>
{
cycle
.
forEach
(
day
=>
{
assert
.
equal
(
typeof
day
.
date
,
'
string
'
)
assert
.
equal
(
typeof
day
.
date
,
'
string
'
,
"
Date is given as a string.
"
)
assert
.
doesNotThrow
(()
=>
LocalDate
.
parse
(
day
.
date
))
assert
.
doesNotThrow
(()
=>
LocalDate
.
parse
(
day
.
date
)
,
"
Date is given in right string format.
"
)
if
(
day
.
temperature
)
assert
.
equal
(
typeof
day
.
temperature
.
value
,
'
number
'
)
if
(
day
.
temperature
)
assert
.
equal
(
typeof
day
.
temperature
.
value
,
'
number
'
,
"
Temperature value is a number.
"
)
if
(
day
.
mucus
)
assert
.
equal
(
typeof
day
.
mucus
.
value
,
'
number
'
)
if
(
day
.
mucus
)
assert
.
equal
(
typeof
day
.
mucus
.
value
,
'
number
'
,
"
Mucus value is a number.
"
)
if
(
day
.
mucus
)
assert
.
ok
(
day
.
mucus
.
value
>=
0
)
if
(
day
.
mucus
)
assert
.
ok
(
day
.
mucus
.
value
>=
0
,
"
Mucus value is greater or equal to 0.
"
)
if
(
day
.
mucus
)
assert
.
ok
(
day
.
mucus
.
value
<
5
)
if
(
day
.
mucus
)
assert
.
ok
(
day
.
mucus
.
value
<
5
,
"
Mucus value below 5.
"
)
if
(
day
.
cervix
)
assert
.
equal
(
typeof
day
.
cervix
.
isClosed
,
'
boolean
'
)
if
(
day
.
cervix
)
assert
.
equal
(
typeof
day
.
cervix
.
isClosed
,
'
boolean
'
,
"
Cervic.isClosed is a boolean.
"
)
if
(
day
.
cervix
)
assert
.
equal
(
typeof
day
.
cervix
.
isHard
,
'
boolean
'
)
if
(
day
.
cervix
)
assert
.
equal
(
typeof
day
.
cervix
.
isHard
,
'
boolean
'
,
"
Cervic.isHard is a boolean.
"
)
})
})
})
})
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment