The examples include two types of string definitions:
let text = "text";
let text = `text`;
and nested scenarios:
But it seems to be not possible, to use a " without a closing pair
let text = `"text`;
let text = `\"text`;
It seems, that there is a rule, the it must be always pairs.
Is there a way to escape that assumed "pair-rule" ?
Using "\" seems not to work.
The examples include two types of string definitions:
and nested scenarios:
But it seems to be not possible, to use a " without a closing pair
It seems, that there is a rule, the it must be always pairs.
Is there a way to escape that assumed "pair-rule" ?
Using "\" seems not to work.