Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-kurmanov committed Jan 5, 2024
2 parents 457c98d + f7f49ff commit 9abf87b
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/Creator/custom_adorner.testcafe.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ test('Adorner exists', async t => {
const selector = Selector('.svc-question__content span').withText('Read-Only');
await t
.maximizeWindow()
.expect(selector.visible).notOk()
.expect(selector.visible).ok()
.click(Selector('span').withText('JSON Editor'))
.pressKey('ctrl+a')
.pressKey('delete')
Expand Down
2 changes: 1 addition & 1 deletion examples/CreatorV1/modify_new_question.testcafe.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ test('Check default tabs', async t => {
.maximizeWindow()
.expect(Selector('span.nav-link').withText('Test Survey').visible).ok()
.click(getExampleTabSelector('Code'))
.expect(Selector('code').textContent).contains('Add a tag property')
.expect(Selector('code').textContent).contains('Add a tag property', { timeout: 5000 })
.click(Selector('span').withText('index.html'))
.wait(2000)
.expect(Selector('code').textContent).contains('surveyCreatorContainer')
Expand Down
2 changes: 1 addition & 1 deletion examples/CreatorV1/survey_title.testcafe.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Selector, fixture, test } from 'testcafe';
fixture`survey_title`
.page`https://surveyjstest.azurewebsites.net/Examples/Survey-Creator?id=titleadorner&platform=Knockoutjs`;

test('title_adorners', async t => {
test.skip('title_adorners', async t => {
await t
.maximizeWindow()
.expect(Selector('span').withText('Input page title here').nth(2).visible).eql(true, 'Page title is visible')
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 9abf87b

Please sign in to comment.