Home Reference Source

src/components/gmap/Gmap.spec.js

'use strict';
import {GmapComponent} from './Gmap';
import {components as comps} from './fixtures/index';
import {Harness} from '../../../test/harness';
describe('Gmap Component', () => {
  it('Should build an gmap component', (done) => {
    Harness.testCreate(GmapComponent, comps.comp1).then((component) => {
      done();
  });
  });
});