35 lines
989 B
JavaScript
35 lines
989 B
JavaScript
|
|
define(['es5-ff-spa-loader'], function(FFSpaLoader) {
|
|
'use strict';
|
|
|
|
describe('Start loader', function() {
|
|
it('FFSpaLoader start with error', function(done) {
|
|
FFSpaLoader.options.server.url = 'http://localhost:9999';
|
|
FFSpaLoader.options.error.handler = function(err) {
|
|
done();
|
|
};
|
|
FFSpaLoader.start();
|
|
});
|
|
it('FFSpaLoader starts', function(done) {
|
|
FFSpaLoader.options.server.url = 'http://localhost:9090/test';
|
|
FFSpaLoader.options.server.assets = '/static/spa-client-resources';
|
|
FFSpaLoader.options.error.handler = function(err) {
|
|
fail(); // TIODI
|
|
};
|
|
FFSpaLoader.start(function() {
|
|
done();
|
|
});
|
|
});
|
|
it('FFSpaLoader starts again', function(done) {
|
|
FFSpaLoader.options.server.url = 'http://localhost:9090/test';
|
|
FFSpaLoader.options.server.assets = '/static/spa-client-resources';
|
|
FFSpaLoader.options.error.handler = function(err) {
|
|
fail(); // TIODI
|
|
};
|
|
FFSpaLoader.start(function() {
|
|
done();
|
|
});
|
|
});
|
|
});
|
|
});
|