1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-20 05:39:42 +02:00
documize/gui/tests/helpers/module-for-acceptance.js

31 lines
914 B
JavaScript
Raw Permalink Normal View History

import { resolve } from 'rsvp';
2016-07-07 18:54:16 -07:00
import { module } from 'qunit';
import startApp from '../helpers/start-app';
import destroyApp from '../helpers/destroy-app';
2016-10-04 15:24:21 -07:00
export default function(name, options = {}) {
2017-09-04 09:56:09 +01:00
module(name, {
beforeEach() {
this.application = startApp();
2018-03-23 11:47:59 +00:00
// localStorage.setItem('folder', 'VzMuyEw_3WqiafcG');
// stubAudit(this);
// stubUserNotification(this);
// server.createList('folder', 2);
// server.createList('user', 2);
// server.createList('document', 2);
// server.createList('permission', 4);
// // server.createList('folder-permission', 2);
// server.createList('organization', 1);
2016-07-07 18:54:16 -07:00
2017-09-04 09:56:09 +01:00
if (options.beforeEach) {
return options.beforeEach.apply(this, arguments);
}
},
2016-07-07 18:54:16 -07:00
2017-09-04 09:56:09 +01:00
afterEach() {
let afterEach = options.afterEach && options.afterEach.apply(this, arguments);
return resolve(afterEach).then(() => destroyApp(this.application));
}
});
2016-07-07 18:54:16 -07:00
}