Skip to content

Commit 70bc3ec

Browse files
author
Emmanuelle BONOLI
committed
create activity card
1 parent 06f5184 commit 70bc3ec

File tree

5 files changed

+39
-2
lines changed

5 files changed

+39
-2
lines changed

angular.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,9 @@
171171
},
172172
"cli": {
173173
"schematicCollections": [
174+
"@schematics/angular",
174175
"@cypress/schematic",
175-
"@angular-eslint/schematics",
176-
"@schematics/angular"
176+
"@angular-eslint/schematics"
177177
]
178178
}
179179
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<div>
2+
3+
</div>

src/app/activities/components/activity-card/activity-card.component.scss

Whitespace-only changes.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import { ComponentFixture, TestBed } from '@angular/core/testing';
2+
3+
import { ActivityCardComponent } from './activity-card.component';
4+
5+
describe('ActivityCardComponent', () => {
6+
let component: ActivityCardComponent;
7+
let fixture: ComponentFixture<ActivityCardComponent>;
8+
9+
beforeEach(async () => {
10+
await TestBed.configureTestingModule({
11+
imports: [ActivityCardComponent]
12+
})
13+
.compileComponents();
14+
15+
fixture = TestBed.createComponent(ActivityCardComponent);
16+
component = fixture.componentInstance;
17+
fixture.detectChanges();
18+
});
19+
20+
it('should create', () => {
21+
expect(component).toBeTruthy();
22+
});
23+
});
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { Component } from '@angular/core';
2+
3+
@Component({
4+
selector: 'app-activity-card',
5+
imports: [],
6+
templateUrl: './activity-card.component.html',
7+
styleUrl: './activity-card.component.scss'
8+
})
9+
export class ActivityCardComponent {
10+
11+
}

0 commit comments

Comments
 (0)