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');
|
|
});
|