mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
990 B
37 lines
990 B
export const tests = [] |
|
|
|
const testProperties = () => { |
|
return ( |
|
Array.isArray(veterinary.animalKnowledge) && |
|
typeof veterinary.canTreat === 'function' && |
|
typeof veterinary.respondClient === 'function' |
|
) |
|
} |
|
|
|
const testCanTreat = () => { |
|
veterinary.animalKnowledge.push('dog', 'cat', 'elephant') |
|
return ( |
|
veterinary.canTreat('dog') && |
|
veterinary.canTreat('cat') && |
|
veterinary.canTreat('elephant') && |
|
!veterinary.canTreat('') && |
|
!veterinary.canTreat('goldfish') |
|
) |
|
} |
|
|
|
const testRespondClient = () => { |
|
veterinary.animalKnowledge.push('parrot') |
|
const vetResponse1 = veterinary.respondClient('Jack', 'parrot') |
|
const vetResponse2 = veterinary.respondClient('Matias', 'cobra') |
|
|
|
return ( |
|
vetResponse1.includes('Jack') && |
|
vetResponse1.toLowerCase().includes('yes') && |
|
vetResponse2.includes('Matias') && |
|
vetResponse2.toLowerCase().includes('no') |
|
) |
|
} |
|
|
|
tests.push(testProperties, testCanTreat, testRespondClient) |
|
|
|
Object.freeze(tests)
|
|
|