Skip to content

Commit

Permalink
Update author.cy.js
Browse files Browse the repository at this point in the history
add quote

see #28
  • Loading branch information
annekauf committed Jan 18, 2024
1 parent 6f14806 commit 4075480
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions cypress/e2e/author.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,13 @@ describe('Author Search', () => {
.contains('Yan, Lianke')
})
})
describe(''阎连科'', () => {

describe("'阎连科'", () => {
beforeEach(() => {
cy.visit({
url: '/Results',
qs: {
lookfor: ''阎连科'',
lookfor: "'阎连科'",
type: 'Author'
}
})
Expand All @@ -51,7 +52,8 @@ describe('Author Search', () => {
// see #22
it('CJK author search should return translations', () => {
cy.get('.record-list')
.contains(''阎连科'')
.contains("'阎连科'")

})
})

Expand Down

0 comments on commit 4075480

Please sign in to comment.