import { AppService } from './app.service';
describe('AppService', () => { let service: AppService; beforeEach(() => { service = new AppService(); }) it('should create', () => { expect(service).toBeTruthy(); }) })