mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
[web] Enable ProjectListRoot tests (#15330)
* [web] Enable ProjectListRoot tests * [web] Set timeout of ProjectListRoot tests to 10s GitOrigin-RevId: ca106d48738bfd3349990691d5c41c8de96880ed
This commit is contained in:
parent
6903d5c945
commit
c67c43b4dd
1 changed files with 4 additions and 4 deletions
|
@ -24,8 +24,9 @@ const {
|
||||||
|
|
||||||
const userId = owner.id
|
const userId = owner.id
|
||||||
|
|
||||||
// eslint-disable-next-line mocha/no-skipped-tests
|
describe('<ProjectListRoot />', function () {
|
||||||
describe.skip('<ProjectListRoot />', function () {
|
this.timeout('10s')
|
||||||
|
|
||||||
let sendMBSpy: sinon.SinonSpy
|
let sendMBSpy: sinon.SinonSpy
|
||||||
let assignStub: sinon.SinonStub
|
let assignStub: sinon.SinonStub
|
||||||
|
|
||||||
|
@ -189,8 +190,7 @@ describe.skip('<ProjectListRoot />', function () {
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
|
|
||||||
// eslint-disable-next-line mocha/no-skipped-tests
|
it('only checks the projects that are viewable when there is a load more button', async function () {
|
||||||
it.skip('only checks the projects that are viewable when there is a load more button', async function () {
|
|
||||||
// first one is the select all checkbox
|
// first one is the select all checkbox
|
||||||
fireEvent.click(allCheckboxes[0])
|
fireEvent.click(allCheckboxes[0])
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue