feat: added getFieldsByAppId integration tests

This commit is contained in:
StevanFreeborn
2023-02-14 22:14:45 -06:00
parent 927fcd42b3
commit 4fe1d7c4a7
5 changed files with 146 additions and 7 deletions
+2 -2
View File
@@ -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;
});
});