AquaTin/tests/system/index.js

22 lines
290 B
JavaScript
Raw Normal View History

const path = require('path');
2019-05-27 02:15:34 -04:00
let local = path.join(__dirname, './../modules/')
module.exports = {
Entities: {
2019-05-27 02:15:34 -04:00
A: {
Name: 'module',
2019-05-27 02:15:34 -04:00
From: local,
data: {
thing: '#B',
boop: true
2019-05-27 02:15:34 -04:00
}
},
B: {
Name: 'module',
From: local,
data: {
thing: '#A'
}
}
}
}