subject.spec.ts 158 B

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