UNPKG

@treecg/ldes-orchestrator

Version:

Fills the gaps that a Linked Data Platform (LDP) cannot do by itself for creating a Linked Data Event Stream (LDES) in LDP.

23 lines (17 loc) 477 B
import {isLoggedin, login} from "../src/Login"; import {isRunning, runSolid} from "./solidHelper"; async function start(): Promise<void> { // start server and wait till it is running + login and wait till that has succeeded login(); runSolid(); await isLoggedin(); await isRunning(); } module.exports = async (): Promise<void> => { try { await start(); } catch (e) { console.log('Setting up test environment has failed.'); console.log(e); } };