34 lines
986 B
JavaScript
34 lines
986 B
JavaScript
|
'use strict';
|
||
|
|
||
|
define(['es5-ff-spa-loader'], function(FFSpaLoader) {
|
||
|
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();
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
});
|