Skip to content

Commit

Permalink
Merge pull request #578 from HyunjunA/master
Browse files Browse the repository at this point in the history
Update unit test
  • Loading branch information
HyunjunA authored Feb 3, 2023
2 parents e645d16 + 8716df2 commit bd38887
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/jest/labApi.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ describe('lab', () => {
var json = await e.response.json()
expect(json.error).toBeTruthy()
expect(e.response.status).toEqual(400)
expect(json.error).toEqual("Unable to upload file. Error: Datafile validation failed, check_dataframe() validation * 'STRING' in ['cat'] ")
expect(json.error).toEqual("Unable to upload file. Error: Datafile validation failed, check_dataframe() validation * 'STRING' in ['cat'] * Please refer to https://epistasislab.github.io/Aliro/userguide.html#adding-datasets for more information.")
}
});

Expand Down Expand Up @@ -155,7 +155,7 @@ describe('lab', () => {
var json = await e.response.json()
expect(json.error).toBeTruthy()
expect(e.response.status).toEqual(400)
expect(json.error).toEqual("Unable to upload file. Error: Datafile validation failed, check_dataframe() validation * 'STRING' in ['cat', 'ord'] ")
expect(json.error).toEqual("Unable to upload file. Error: Datafile validation failed, check_dataframe() validation * 'STRING' in ['cat', 'ord'] * Please refer to https://epistasislab.github.io/Aliro/userguide.html#adding-datasets for more information.")
}
});

Expand Down

0 comments on commit bd38887

Please sign in to comment.