barker/bookie/src/app/customers/customer.module.spec.ts

14 lines
309 B
TypeScript

import { CustomerModule } from './customer.module';
describe('CustomerModule', () => {
let customerModuleModule: CustomerModule;
beforeEach(() => {
customerModuleModule = new CustomerModule();
});
it('should create an instance', () => {
expect(customerModuleModule).toBeTruthy();
});
});