Skip to content

Commit

Permalink
Update author.cy.js
Browse files Browse the repository at this point in the history
Ergänzung Test Autorensuche als Phrasensuche / strikte Suche ''阎连科''

see #22
  • Loading branch information
annekauf committed Jan 16, 2024
1 parent 052fd46 commit 6f14806
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions cypress/e2e/author.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,23 @@ describe('Author Search', () => {
.contains('Yan, Lianke')
})
})
describe(''阎连科'', () => {
beforeEach(() => {
cy.visit({
url: '/Results',
qs: {
lookfor: ''阎连科'',
type: 'Author'
}
})
})

// see #22
it('CJK author search should return translations', () => {
cy.get('.record-list')
.contains(''阎连科'')
})
})

describe('"Corte, Justine del"', () => {
beforeEach(() => {
Expand Down

0 comments on commit 6f14806

Please sign in to comment.