Link K8S deps properly
This commit is contained in:
parent
0ac77cdb15
commit
f0260fc819
64 changed files with 4282 additions and 3069 deletions
12
tests/api.js
12
tests/api.js
|
@ -7,16 +7,18 @@ import axios from "axios";
|
|||
const qltr = new Qualiteer();
|
||||
await qltr.start();
|
||||
|
||||
const url = "https://Qualiteer.elijahparker3.repl.co";
|
||||
const url = process.env.QUALITEER_EXECUTOR_URL;
|
||||
|
||||
const testsUrl = "/api/catalog/tests";
|
||||
const mappingsUrl = "/api/catalog/pipeline-mappings";
|
||||
const resultsUrl = "/api/results/failing";
|
||||
|
||||
const get = (...args) => axios.get(`${url}/${args[0]}`, args[1]);
|
||||
const get = (...args) => axios.get(`${url}${args[0]}`, args[1]);
|
||||
|
||||
var res = await get(resultsUrl);
|
||||
const mappings = await get(resultsUrl, {}).catch((e) => console.log(e));
|
||||
console.log(mappings.data);
|
||||
/*var res = await get(resultsUrl);
|
||||
console.log(res.data);
|
||||
|
||||
res = await get(resultsUrl, { headers: { count: true } });
|
||||
|
||||
console.log(res.data);
|
||||
console.log(res.data);*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue