mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-25 23:54:55 +01:00
Clean up code organizing tests structure
This commit is contained in:
parent
224f0f0446
commit
45e79205f1
@ -17,7 +17,7 @@
|
|||||||
*/
|
*/
|
||||||
const TestSuite = require('./TestSuite').default;
|
const TestSuite = require('./TestSuite').default;
|
||||||
|
|
||||||
const Mindplot = require('../../../lib/mindplot');
|
const Mindplot = require('../../lib/mindplot');
|
||||||
const mindplot = Mindplot();
|
const mindplot = Mindplot();
|
||||||
|
|
||||||
const BalancedTestSuite = new Class({
|
const BalancedTestSuite = new Class({
|
@ -16,7 +16,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
const TestSuite = require('./TestSuite').default;
|
const TestSuite = require('./TestSuite').default;
|
||||||
const Mindplot = require('../../../lib/mindplot');
|
const Mindplot = require('../../lib/mindplot');
|
||||||
const mindplot = Mindplot();
|
const mindplot = Mindplot();
|
||||||
|
|
||||||
const FreeTestSuite = new Class({
|
const FreeTestSuite = new Class({
|
@ -16,7 +16,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
const TestSuite = require('./TestSuite').default;
|
const TestSuite = require('./TestSuite').default;
|
||||||
const Mindplot = require('../../../lib/mindplot');
|
const Mindplot = require('../../lib/mindplot');
|
||||||
const mindplot = Mindplot();
|
const mindplot = Mindplot();
|
||||||
|
|
||||||
const SymmetricTestSuite = new Class({
|
const SymmetricTestSuite = new Class({
|
@ -15,7 +15,7 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
const Mindplot = require('../../../lib/mindplot');
|
const Mindplot = require('../../lib/mindplot');
|
||||||
const mindplot = Mindplot();
|
const mindplot = Mindplot();
|
||||||
|
|
||||||
const TestSuite = new Class({
|
const TestSuite = new Class({
|
@ -1,10 +1,7 @@
|
|||||||
const Mindplot = require('../../lib/mindplot');
|
const TestSuite = require('./TestSuite').default;
|
||||||
global.mindplot = Mindplot();
|
const BalancedTestSuite = require('./BalancedTestSuite').default;
|
||||||
|
const SymmetricTestSuite = require('./SymmetricTestSuite').default;
|
||||||
const TestSuite = require('./lib/TestSuite').default;
|
const FreeTestSuite = require('./FreeTestSuite').default;
|
||||||
const BalancedTestSuite = require('./lib/BalancedTestSuite').default;
|
|
||||||
const SymmetricTestSuite = require('./lib/SymmetricTestSuite').default;
|
|
||||||
const FreeTestSuite = require('./lib/FreeTestSuite').default;
|
|
||||||
|
|
||||||
window.addEventListener('DOMContentLoaded', function () {
|
window.addEventListener('DOMContentLoaded', function () {
|
||||||
var basicTest = new TestSuite();
|
var basicTest = new TestSuite();
|
||||||
|
Loading…
Reference in New Issue
Block a user