Skip to content

Commit

Permalink
Removed API key from Google Maps API load in karma
Browse files Browse the repository at this point in the history
  • Loading branch information
arthur-e committed Feb 25, 2018
1 parent e0835bd commit 13a7cdd
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions karma.conf.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
module.exports = function (config) {
config.set({
basePath: '',
port: 9877,
colors: true,
logLevel: 'INFO',
autoWatch: false,
browsers: ['PhantomJS'],
singleRun: true,
frameworks: ['jasmine'],
reporters: ['mocha'],
files: [
'https://maps.googleapis.com/maps/api/js?v=3.exp&libraries=geometry&key=AIzaSyCsQ6i68i9hQ90ic34cSdnROS_WcMCVksM',
'wicket.js',
'wicket-gmap3.js',
'tests/wicket-gmap3-spec.js'
]
});
config.set({
basePath: '',
port: 9877,
colors: true,
logLevel: 'INFO',
autoWatch: false,
browsers: ['PhantomJS'],
singleRun: true,
frameworks: ['jasmine'],
reporters: ['mocha'],
files: [
'https://maps.googleapis.com/maps/api/js?v=3.exp&libraries=geometry',
'wicket.js',
'wicket-gmap3.js',
'tests/wicket-gmap3-spec.js'
]
});
};

0 comments on commit 13a7cdd

Please sign in to comment.