Skip to content

Commit

Permalink
27739 Prepare a fix [Globe Map does not work in Power BI Service afte…
Browse files Browse the repository at this point in the history
…r publishing a report from Power BI Desktop] (#27)
  • Loading branch information
ignatvilesov authored Aug 17, 2018
1 parent a477b12 commit 8802f84
Show file tree
Hide file tree
Showing 12 changed files with 2,622 additions and 2,169 deletions.
8 changes: 1 addition & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,7 @@ sudo: required
dist: trusty
language: node_js
node_js:
- "8"
addons:
chrome: stable
before_install:
- export CHROME_BIN=google-chrome-stable
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- "10"
install:
- npm install
script:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 2.4.1
* Location data field is no longer mandatory

## 2.4.0
* Added localization for all supported languages

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ Use it with any location data. The location could be an address, city, county ,

Globe Map also supports heat map on the spatial map. You can use a second measure for heat intensity and draw immediate attention to the right areas.

See also [GlobeMap at Microsoft Office store](https://store.office.com/en-us/app.aspx?assetid=WA104380799&sourcecorrid=21c5c9e1-a21a-4d44-ab42-2134f0c9fc27&searchapppos=0&ui=en-US&rs=en-US&ad=US&appredirect=false)
See also [Globe Map at Microsoft AppStore](https://appsource.microsoft.com/en-us/product/power-bi-visuals/WA104380799)
39 changes: 15 additions & 24 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,29 +26,17 @@

'use strict';

const recursivePathToTests = 'test/**/*.ts'
, srcRecursivePath = '.tmp/drop/visual.js'
, srcCssRecursivePath = '.tmp/drop/visual.css'
, srcOriginalRecursivePath = 'src/**/*.ts'
, coverageFolder = 'coverage';
const recursivePathToTests = 'test/**/*.ts';
const srcRecursivePath = '.tmp/drop/visual.js';
const srcCssRecursivePath = '.tmp/drop/visual.css';
const srcOriginalRecursivePath = 'src/**/*.ts';
const coverageFolder = 'coverage';

module.exports = (config) => {
const browsers = [];

if (process.env.TRAVIS) {
browsers.push('ChromeTravisCI');
} else {
browsers.push('Chrome');
}
process.env.CHROME_BIN = require('puppeteer').executablePath();

module.exports = (config) => {
config.set({
browsers,
customLaunchers: {
ChromeTravisCI: {
base: 'Chrome',
flags: ['--no-sandbox']
}
},
browsers: ['ChromeHeadless'],
colors: true,
frameworks: ['jasmine'],
reporters: [
Expand Down Expand Up @@ -90,9 +78,12 @@ module.exports = (config) => {
},
coverageReporter: {
dir: coverageFolder,
reporters: [
{ type: 'html' },
{ type: 'lcov' }
reporters: [{
type: 'html'
},
{
type: 'lcov'
}
]
},
remapIstanbulReporter: {
Expand All @@ -103,4 +94,4 @@ module.exports = (config) => {
}
}
});
};
};
Loading

0 comments on commit 8802f84

Please sign in to comment.