@boostercloud/application-tester
Version:
Contains Booster types related to the information extracted from the user project
17 lines (16 loc) • 687 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ApplicationTester = void 0;
const graphql_helper_1 = require("./graphql-helper");
const token_helper_1 = require("./token-helper");
const http_helper_1 = require("./http-helper");
class ApplicationTester {
constructor(providerTestHelper) {
this.graphql = new graphql_helper_1.GraphQLHelper(providerTestHelper);
this.http = new http_helper_1.HttpHelper(providerTestHelper);
this.token = new token_helper_1.TokenHelper();
this.count = providerTestHelper.counters;
this.query = providerTestHelper.queries;
}
}
exports.ApplicationTester = ApplicationTester;