Skip to content

Commit

Permalink
Merge branch 'master' into snyk-fix-a45d87910cc7ff0572e36a04fe6b18e7
Browse files Browse the repository at this point in the history
  • Loading branch information
MiguelPelegrina authored Apr 12, 2024
2 parents 10bdc3f + f8887bf commit 9e4f449
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Docker Image CI
name: CI Workflow

on:
push:
Expand All @@ -8,9 +8,7 @@ on:
workflow_dispatch:

jobs:

build:

runs-on: ubuntu-latest

steps:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { AddEditUserFormComponent } from './add-edit-user-form.component';
import { AddEditUserForm } from './add-edit-user-form.component';

describe('AddEditUserFormComponent', () => {
let component: AddEditUserFormComponent;
let fixture: ComponentFixture<AddEditUserFormComponent>;
describe('AddEditUserForm', () => {
let component: AddEditUserForm;
let fixture: ComponentFixture<AddEditUserForm>;

beforeEach(() => {
TestBed.configureTestingModule({
declarations: [AddEditUserFormComponent]
declarations: [AddEditUserForm]
});
fixture = TestBed.createComponent(AddEditUserFormComponent);
fixture = TestBed.createComponent(AddEditUserForm);
component = fixture.componentInstance;
fixture.detectChanges();
});
Expand Down
2 changes: 1 addition & 1 deletion src/app/shared/service/abstract.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { AbstractService } from './abstract.service';
import { Country } from '../domain/country/country';

describe('AbstractService', () => {
let service: AbstractService<Country>;
let service: AbstractService<Country, string>;

beforeEach(() => {
TestBed.configureTestingModule({});
Expand Down

0 comments on commit 9e4f449

Please sign in to comment.