Skip to content

Commit fd5c26b

Browse files
authored
Update add-new-question.ts
1 parent 070c269 commit fd5c26b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

functionalTests/designer/add-new-question.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ test("Add New Question with sub type", async t => {
141141
.expect(getVisibleElement(".svc-question__content-actions .svc-survey-element-toolbar-item__title").nth(1).textContent).eql("Stars");
142142

143143
let expectedJson = {
144-
"headerView": 'advanced',
144+
"headerView": "advanced",
145145
"pages": [
146146
{
147147
"name": "page1",
@@ -168,7 +168,7 @@ test("Add New Question with sub type", async t => {
168168
.expect(getVisibleElement(".svc-question__content-actions .svc-survey-element-toolbar-item__title").nth(1).textContent).eql("Password");
169169

170170
expectedJson = <any>{
171-
"headerView": 'advanced',
171+
"headerView": "advanced",
172172
"pages": [
173173
{
174174
"name": "page1",
@@ -195,7 +195,7 @@ test("Add New Question with sub type", async t => {
195195
.expect(getVisibleElement(".svc-question__content-actions .svc-survey-element-toolbar-item__title").nth(1).textContent).eql("Labels");
196196

197197
expectedJson = <any>{
198-
"headerView": 'advanced',
198+
"headerView": "advanced",
199199
"pages": [
200200
{
201201
"name": "page1",
@@ -210,4 +210,4 @@ test("Add New Question with sub type", async t => {
210210
};
211211
resultJson = await getJSON();
212212
await t.expect(resultJson).eql(expectedJson);
213-
});
213+
});

0 commit comments

Comments
 (0)