Skip to content

Commit d121765

Browse files
authored
Merge pull request #146 from 0x41head/angular-ui
Added Features
2 parents 0dd9727 + 48658ec commit d121765

File tree

4 files changed

+19
-27
lines changed

4 files changed

+19
-27
lines changed

.github/workflows/tests.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Unit Tests
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v1
11+
- name: Use Node.js 16.16.0
12+
uses: actions/setup-node@v1
13+
with:
14+
node-version: 16.0
15+
- name: Install dependencies
16+
run: npm install
17+
- name: Test
18+
run: npm test -- --watch=false --browsers=ChromeHeadless

src/app/app.module.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import { TopHeaderComponent } from './component/top-header/top-header.component'
1414
import { TaskDescriptionComponent } from './component/task-description/task-description.component';
1515
import { ymlService } from './service/yaml-parser/yaml-parser.service';
1616
import { HttpClientModule } from '@angular/common/http';
17-
import { CombinerService } from './service/combiner/combiner.service';
1817
import { CircularHeatmapComponent } from './component/circular-heatmap/circular-heatmap.component';
1918
import { MappingComponent } from './component/mapping/mapping.component';
2019
import { ReadmeToHtmlComponent } from './component/readme-to-html/readme-to-html.component';
@@ -49,7 +48,7 @@ import { DependencyGraphComponent } from './dependency-graph/dependency-graph.co
4948
HttpClientModule
5049

5150
],
52-
providers: [ymlService,CombinerService],
51+
providers: [ymlService],
5352
bootstrap: [AppComponent]
5453
})
5554
export class AppModule { }

src/app/service/combiner/combiner.service.spec.ts

Lines changed: 0 additions & 16 deletions
This file was deleted.

src/app/service/combiner/combiner.service.ts

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)