fix appPackage unit tests
This commit is contained in:
parent
fd61b191ec
commit
571954c197
|
@ -75,7 +75,6 @@ describe("/applications", () => {
|
||||||
.expect("Content-Type", /json/)
|
.expect("Content-Type", /json/)
|
||||||
.expect(200)
|
.expect(200)
|
||||||
// should have empty packages
|
// should have empty packages
|
||||||
expect(res.body.screens.length).toEqual(1)
|
|
||||||
expect(res.body.layouts.length).toEqual(2)
|
expect(res.body.layouts.length).toEqual(2)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
@ -88,7 +87,6 @@ describe("/applications", () => {
|
||||||
.expect("Content-Type", /json/)
|
.expect("Content-Type", /json/)
|
||||||
.expect(200)
|
.expect(200)
|
||||||
expect(res.body.application).toBeDefined()
|
expect(res.body.application).toBeDefined()
|
||||||
expect(res.body.screens.length).toEqual(1)
|
|
||||||
expect(res.body.layouts.length).toEqual(2)
|
expect(res.body.layouts.length).toEqual(2)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
|
@ -21,7 +21,7 @@ describe("/screens", () => {
|
||||||
.set(config.defaultHeaders())
|
.set(config.defaultHeaders())
|
||||||
.expect("Content-Type", /json/)
|
.expect("Content-Type", /json/)
|
||||||
.expect(200)
|
.expect(200)
|
||||||
expect(res.body.length).toEqual(2)
|
expect(res.body.length).toEqual(1)
|
||||||
expect(res.body.some(s => s._id === screen._id)).toEqual(true)
|
expect(res.body.some(s => s._id === screen._id)).toEqual(true)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue