Tests(DPxAI): WIP Upload test for quest01 objects-around

This commit is contained in:
Louis TOUSSAINT 2024-08-08 02:54:35 +02:00 committed by Oumaima Fisaoui
parent a7b2fc47ad
commit 6ad51aa66e
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
[
{
"description": "variable robot is declared and of type object",
"code": "equal(typeof robot, 'object')"
},
{
"description": "property name from robot is of type string",
"code": "equal(typeof robot.name, 'string')"
},
{
"description": "property age from robot is of type number",
"code": "equal(typeof robot.age, 'number')"
},
{
"description": "property hasEnergy from robot is of type boolean",
"code": "equal(typeof robot.hasEnergy, 'boolean')"
},
{
"description": "all 3 variable should be defined and have the right values",
"code": "let robot = {\n name: 'Freddy',\n age: 27,\n hasEnergy: false,\n}\n\n// Your code\n\nequal({ name, age, hasEnergy }, robot)"
},
{
"description": "value should also work for Jean-Pierre",
"code": "let robot = {\n name: 'Jean-Pierre',\n age: 65,\n hasEnergy: true,\n}\n\n// Your code\n\nequal({ name, age, hasEnergy }, robot)"
}
]