Remove unneeded tests
This commit is contained in:
parent
d4b500b5f1
commit
6396492773
2 changed files with 1 additions and 41 deletions
3
test.ts
3
test.ts
|
@ -1,5 +1,4 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
alert("Hello wrold!")
|
alert("Hello world!")
|
||||||
downloadTxtFile("abc")
|
|
|
@ -54,45 +54,6 @@ new T("TagQuestionElement",
|
||||||
T.assertContains("What is the name of this bookcase?", html);
|
T.assertContains("What is the name of this bookcase?", html);
|
||||||
T.assertContains("This bookcase has no name", html);
|
T.assertContains("This bookcase has no name", html);
|
||||||
T.assertContains("<input type='text'", html);
|
T.assertContains("<input type='text'", html);
|
||||||
}],
|
|
||||||
["Regression: has drinking water is asked", () => {
|
|
||||||
const tags = new UIEventSource({
|
|
||||||
id: "node/123",
|
|
||||||
amenity: 'drinking_water'
|
|
||||||
});
|
|
||||||
const jsonConfig = {
|
|
||||||
"#": "Bottle refill",
|
|
||||||
"question": {
|
|
||||||
"en": "How easy is it to fill water bottles?",
|
|
||||||
"nl": "Hoe gemakkelijk is het om drinkbussen bij te vullen?",
|
|
||||||
"de": "Wie einfach ist es, Wasserflaschen zu füllen?"
|
|
||||||
},
|
|
||||||
"mappings": [
|
|
||||||
{
|
|
||||||
"if": "bottle=yes",
|
|
||||||
"then": {
|
|
||||||
"en": "It is easy to refill water bottles",
|
|
||||||
"nl": "Een drinkbus bijvullen gaat makkelijk",
|
|
||||||
"de": "Es ist einfach, Wasserflaschen nachzufüllen"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"if": "bottle=no",
|
|
||||||
"then": {
|
|
||||||
"en": "Water bottles may not fit",
|
|
||||||
"nl": "Een drinkbus past moeilijk",
|
|
||||||
"de": "Wasserflaschen passen möglicherweise nicht"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
};
|
|
||||||
const config = new TagRenderingConfig(
|
|
||||||
jsonConfig, null, "test");
|
|
||||||
const questionElement = new EditableTagRendering(tags, config);
|
|
||||||
const html = questionElement.InnerRender();
|
|
||||||
T.assertContains("How easy is it to fill water bottles?", html);
|
|
||||||
T.assertContains("It is easy to refill water bottles", html);
|
|
||||||
T.assertContains("<input type='radio'", html);
|
|
||||||
}]
|
}]
|
||||||
]
|
]
|
||||||
);
|
);
|
Loading…
Add table
Add a link
Reference in a new issue