grade.spec.ts 150 B

1234567
  1. import { Grade } from './grade';
  2. describe('Grade', () => {
  3. it('should create an instance', () => {
  4. expect(new Grade()).toBeTruthy();
  5. });
  6. });