Move gmaps stub to helpers folder

This commit is contained in:
Bartek Fabiszewski 2020-01-08 21:07:27 +01:00
parent 1c7092d2bf
commit dfe6a4514d
3 changed files with 1 additions and 2 deletions

View File

@ -17,7 +17,7 @@
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
import * as gmStub from './googlemaps.stub.js';
import * as gmStub from './helpers/googlemaps.stub.js';
import { config, lang } from '../src/initializer.js'
import GoogleMapsApi from '../src/mapapi/api_gmaps.js';
import TrackFactory from './helpers/trackfactory.js';

View File

@ -16,7 +16,6 @@ module.exports = function(config) {
frameworks: [ 'jasmine' ],
files: [
{ pattern: 'test/*.test.js', type: 'module' },
{ pattern: 'test/*.stub.js', type: 'module', included: false },
{ pattern: 'test/helpers/*.js', type: 'module', included: false },
{ pattern: 'test/fixtures/*.html', included: false },
{ pattern: 'src/**/*.js', type: 'module', included: false }