Skip to content

Commit

Permalink
Uncomment test to see if it works on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
guergana committed Dec 1, 2024
1 parent b85e5b5 commit 52a33ff
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test/specs/test.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { $, expect } from '@wdio/globals'
import path from 'node:path'

describe('ODE basic workflow', () => {
it('displays welcoming screen and FocusTrap exist until user clicks Get Started', async () => {
it.skip('displays welcoming screen and FocusTrap exist until user clicks Get Started', async () => {
// ODE has a Loading window and a main Window. We need to switch to the main one.
const handles = await browser.getWindowHandles()
await browser.switchToWindow(handles[0])
Expand All @@ -24,8 +24,7 @@ describe('ODE basic workflow', () => {
await expect(uploadYourDataButton).toBeClickable()
browser.closeWindow()
}),
// TODO: re-enable when we find out why this is failing
it.skip('uploads a csv file, file navigator adds an node, and the file content gets display', async() => {
it('uploads a csv file, file navigator adds an node, and the file content gets display', async() => {
const filePath = path.join(__dirname, '../data/valid.csv')
const remoteFilePath = await browser.uploadFile(filePath)
const root = await $('#root')
Expand Down

0 comments on commit 52a33ff

Please sign in to comment.