mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/Zos.git
synced 2026-06-15 22:56:28 +00:00
21 lines
382 B
JavaScript
21 lines
382 B
JavaScript
'use strict';
|
|
|
|
const TestUtils = require('./TestUtils');
|
|
|
|
global._imTest = {};
|
|
global._imTest.main = require('..');
|
|
|
|
describe('All tests', function() {
|
|
// This ensures informative error message if fails
|
|
before(function(done) {
|
|
this.timeout(20000);
|
|
TestUtils.beforeTests(done);
|
|
});
|
|
|
|
after(function() {
|
|
TestUtils.afterTests();
|
|
});
|
|
|
|
require('./InteractionMemoryTest');
|
|
});
|