mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Fix arrays in FileStoreController tests (#13752)
GitOrigin-RevId: 80cde35f11db36dba350eb8023ac3b1d2abb3d2b
This commit is contained in:
parent
0dc9aa3d21
commit
254422180e
1 changed files with 3 additions and 3 deletions
|
@ -156,10 +156,10 @@ describe('FileStoreController', function () {
|
||||||
})
|
})
|
||||||
;[
|
;[
|
||||||
// None of these should trigger the iOS/html logic
|
// None of these should trigger the iOS/html logic
|
||||||
('x.html-is-rad',
|
'x.html-is-rad',
|
||||||
'html.pdf',
|
'html.pdf',
|
||||||
'.html-is-good-for-hidden-files',
|
'.html-is-good-for-hidden-files',
|
||||||
'somefile'),
|
'somefile',
|
||||||
].forEach(filename => {
|
].forEach(filename => {
|
||||||
describe(`with filename as '${filename}'`, function () {
|
describe(`with filename as '${filename}'`, function () {
|
||||||
beforeEach(function () {
|
beforeEach(function () {
|
||||||
|
@ -171,7 +171,7 @@ describe('FileStoreController', function () {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
;[('iPhone', 'iPad', 'Firefox', 'Chrome')].forEach(browser => {
|
;['iPhone', 'iPad', 'Firefox', 'Chrome'].forEach(browser => {
|
||||||
describe(`downloaded from ${browser}`, function () {
|
describe(`downloaded from ${browser}`, function () {
|
||||||
beforeEach(function () {
|
beforeEach(function () {
|
||||||
this.user_agent = `Some ${browser} thing`
|
this.user_agent = `Some ${browser} thing`
|
||||||
|
|
Loading…
Reference in a new issue