E - Expected Value

It's the third section in the name.
It specifies what's the expected result after executing the unit of code under the simulated scenario.
/** In this example the three sections of the name are in the same text.
* Airplane is the Unit under test
* takeOff without parameters is the scenario under test
*/
test("Airplane, takeOff without parameters, the airplane state should be FLYING after takeoff", () => {});
/** In this example the first section of the test name is in a group
* because there will be multiple tests on the same unit.
* takeOff without parameters is the scenario under test
*/
group("Airplane", () => {
group("takeOff without parameters, the airplane state should be FLYING after takeoff", ()=>);
test("takeOff with isRaining parameter set to true, , the airplane state should be FLYING after takeoff", () => {});
});





