This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git lfs install => result = Updated Git hooks, Git LFS initialized | |
git lfs track "*.pack" "*.zip" => result = tracking "*.pack" tracking "*.zip" | |
git add .gitattributes | |
=> result = .pack filter=lfs diff=lfs merge=lfs -text | |
.zip filter=lfs diff=lfs merge= lfs -text | |
git add filename.zip | |
git commit -m "update file with Git LFS" | |
git push origin main | |
git lfs ls-files => result = To show the tracked files |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { ComponentFixture, TestBed } from '@angular/core/testing'; | |
import { FormsModule, NgForm, ReactiveFormsModule } from '@angular/forms'; | |
import { By } from '@angular/platform-browser'; | |
import { FormComponent } from './form'; | |
describe('FormComponent', () => { | |
let component: FormComponent; | |
let fixture: ComponentFixture<FormComponent>; | |
beforeEach(async () => { |