console/integration-tests/testkit/external-composition.ts

14 lines
383 B
TypeScript

import { getServiceHost } from './utils';
export async function history(): Promise<string[]> {
const dockerAddress = await getServiceHost('external_composition', 3012);
const res = await fetch(`http://${dockerAddress}/_history`, {
method: 'GET',
headers: {
accept: 'application/json',
'content-type': 'application/json',
},
});
return res.json();
}