Broker System for Supercredit
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

26 lines
626B

  1. import { ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { CanvasComponent } from './canvas.component';
  3. describe('CanvasComponent', () => {
  4. let component: CanvasComponent;
  5. let fixture: ComponentFixture<CanvasComponent>;
  6. beforeEach(async () => {
  7. await TestBed.configureTestingModule({
  8. declarations: [ CanvasComponent ]
  9. })
  10. .compileComponents();
  11. });
  12. beforeEach(() => {
  13. fixture = TestBed.createComponent(CanvasComponent);
  14. component = fixture.componentInstance;
  15. fixture.detectChanges();
  16. });
  17. it('should create', () => {
  18. expect(component).toBeTruthy();
  19. });
  20. });