feat: added getFieldsByAppId integration tests
This commit is contained in:
@@ -63,7 +63,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;
|
||||
});
|
||||
|
||||
@@ -73,7 +73,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