mirror of
https://github.com/abdellahaski/AngularFirebaseVotingApp.git
synced 2025-12-08 11:19:56 +00:00
8 lines
172 B
TypeScript
8 lines
172 B
TypeScript
import { Candidate } from './candidate.model';
|
|
|
|
describe('Candidate', () => {
|
|
it('should create an instance', () => {
|
|
expect(new Candidate()).toBeTruthy();
|
|
});
|
|
});
|