mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Use unique words for spelling unit test (#17195)
GitOrigin-RevId: 21dc22192ee462d222982a92612aa8a0b858aba1
This commit is contained in:
parent
bafc2189e3
commit
3cef60c8d7
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ describe('ASpell', function () {
|
|||
|
||||
return describe('when the request times out', function () {
|
||||
beforeEach(function (done) {
|
||||
const words = __range__(0, 1000, true).map(i => 'abcdefg')
|
||||
const words = __range__(0, 1000, true).map(i => 'abcdefg' + i)
|
||||
this.ASpell.setTimeout(1)
|
||||
this.start = Date.now()
|
||||
return this.ASpell.checkWords('en', words, (error, result) => {
|
||||
|
|
Loading…
Reference in a new issue