mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-12-28 09:51:06 -06:00
16 lines
402 B
JavaScript
16 lines
402 B
JavaScript
const getConfig = require('../js/getconfig');
|
|
|
|
// mock required so getConfig reads config from correct path
|
|
jest.mock('../js/utils/misc.js', function() {
|
|
return {
|
|
isDevEnv: false,
|
|
isMac: false
|
|
}
|
|
});
|
|
|
|
test('getConfig should have proper url', function() {
|
|
return getConfig(false).then(function(result) {
|
|
expect(result.url).toBe('https://my.symphony.com');
|
|
});
|
|
});
|