bruno/packages/bruno-js/src/index.js

13 lines
165 B
JavaScript
Raw Normal View History

2023-01-24 13:57:47 +01:00
const {
ScriptRuntime
2023-02-06 10:54:34 +01:00
} = require('./script-runtime');
2023-01-24 13:57:47 +01:00
2023-01-29 13:05:28 +01:00
const {
TestRuntime
2023-02-06 10:54:34 +01:00
} = require('./test-runtime');
2023-01-29 13:05:28 +01:00
2023-01-24 13:57:47 +01:00
module.exports = {
2023-01-29 13:05:28 +01:00
ScriptRuntime,
TestRuntime
2023-01-24 13:57:47 +01:00
};