File size: 211 Bytes
1e92f2d
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
/**
 * @jest-environment node
 */

describe('GoogleMapsLoader', () => {
  it('expect to require the file in a Node environment', () => {
    expect(() => require('../GoogleMapsLoader')).not.toThrow();
  });
});