mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2026-05-24 16:00:16 -04:00
* chore: start migrate mashup tetss * chore: rename file * chore: add log * chore: mashup test config * chore: higher timeout * chore: more config * chore: reporter * chore: change config * chore: change config * chore: change config * chore: change config * chore: store artifacts * chore: longer timeout * chore: migrate listbox test * chore: update waitForFunc
11 lines
253 B
JavaScript
11 lines
253 B
JavaScript
const server = require('./server.cjs');
|
|
|
|
module.exports = async () => {
|
|
const s = await server();
|
|
process.env.BASE_URL = s.url;
|
|
// Optionally return a teardown function or data
|
|
return async () => {
|
|
if (s && s.close) await s.close();
|
|
};
|
|
};
|