feat: added getFieldsByAppId integration tests
This commit is contained in:
@@ -59,7 +59,7 @@ describe('getAppById', function () {
|
||||
|
||||
expect(response.statusCode).to.equal(403);
|
||||
expect(response.isSuccessful).to.be.false;
|
||||
expect(response.message).to.not.be.null;
|
||||
expect(response.message).to.not.be.undefined.and.not.be.null;
|
||||
expect(response.data).to.be.null;
|
||||
});
|
||||
|
||||
@@ -69,7 +69,7 @@ describe('getAppById', function () {
|
||||
|
||||
expect(response.statusCode).to.equal(404);
|
||||
expect(response.isSuccessful).to.be.false;
|
||||
expect(response.message).to.not.be.null;
|
||||
expect(response.message).to.not.be.undefined.and.not.be.null;
|
||||
expect(response.data).to.be.null;
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user