| /* |
| ****************************************************************************** |
| * Copyright © 2018 PTA GmbH. |
| * All rights reserved. This program and the accompanying materials |
| * are made available under the terms of the Eclipse Public License v1.0 |
| * which accompanies this distribution, and is available at |
| * |
| * http://www.eclipse.org/legal/epl-v10.html |
| * |
| ****************************************************************************** |
| */ |
| import { TestBed } from '@angular/core/testing'; |
| import { environment } from './environment.prod'; |
| |
| |
| describe('Enviroment: Production', () => { |
| |
| |
| beforeEach(() => { |
| |
| TestBed.configureTestingModule({ |
| declarations: [environment] |
| }); |
| }); |
| |
| it('should create an instance', () => { |
| expect(environment.production).toBeTruthy(); |
| }); |
| }); |
| |