describe('Example test', () => {
  /*let testComponent;

  beforeEach(() => {
    TestBed.configureTestingModule({
      imports: [ExampleModule]
    });
    testComponent = TestBed.createComponent(TestComponent);
  });*/

  test('Always true', () => {
    expect(true).toBe(true);
  });
});
