Update: Environment for Heroku Production

This commit is contained in:
Yûki VACHOT 2021-12-22 13:39:06 +01:00
parent 5fbdb7098e
commit 13daf10ca8
201 changed files with 34 additions and 2736 deletions

View file

@ -0,0 +1,25 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { PageWatchingVideoComponent } from './page-watching-video.component';
describe('PageWatchingVideoComponent', () => {
let component: PageWatchingVideoComponent;
let fixture: ComponentFixture<PageWatchingVideoComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ PageWatchingVideoComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(PageWatchingVideoComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});