• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

ckapps / overckd / 13656842746

31 May 2023 01:52PM CUT coverage: 20.328%. First build
13656842746

push

github

web-flow
Merge pull request #17 from ckapps/chore/update-deps

Chore/update deps

32 of 288 branches covered (11.11%)

Branch coverage included in aggregate %.

32 of 270 new or added lines in 73 files covered. (11.85%)

464 of 2152 relevant lines covered (21.56%)

0.76 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/packages/frontend/src/app/modules/domain/recipe/modules/recipe-input/recipe-input.module.ts
1
import { NgModule } from '@angular/core';
×
2
import { CommonModule } from '@angular/common';
×
3
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
×
NEW
4
import { MatLegacyAutocompleteModule as MatAutocompleteModule } from '@angular/material/legacy-autocomplete';
×
NEW
5
import { MatLegacyFormFieldModule as MatFormFieldModule } from '@angular/material/legacy-form-field';
×
NEW
6
import { MatLegacyInputModule as MatInputModule } from '@angular/material/legacy-input';
×
NEW
7
import { MatLegacyListModule as MatListModule } from '@angular/material/legacy-list';
×
8

9
// External modules
10
import { CkadButtonModule } from 'src/app/modules/ckapps-design-system/ckad-ui-common/ckad-button/ckad-button.module';
×
11
import { CkadInputModule } from 'src/app/modules/ckapps-design-system/ckad-ui-common/ckad-input/ckad-input.module';
×
12
import { CkadListModule } from 'src/app/modules/ckapps-design-system/ckad-ui-common/ckad-list/ckad-list.module';
×
13
import { UiModule } from 'src/app/modules/ui/ui.module';
×
14

15
// Other domain modules
16
import { IngredientModule } from '../../../ingredient/ingredient.module';
×
17

18
// Module components
19
import { RecipeInputSourcesListComponent } from './components/recipe-input-sources-list/recipe-input-sources-list.component';
×
20
import { RecipeInputSourceComponent } from './components/recipe-input-source/recipe-input-source.component';
×
21

22
/**
23
 * **overckd/module**
24
 *
25
 * Module containing everything needed for
26
 * `Recipe` and forms
27
 */
28
@NgModule({
29
  declarations: [
30
    // Module components
31
    RecipeInputSourcesListComponent,
32
    RecipeInputSourceComponent,
33
  ],
34
  imports: [
35
    CommonModule,
36
    FormsModule,
37
    ReactiveFormsModule,
38
    MatAutocompleteModule,
39
    MatFormFieldModule,
40
    MatInputModule,
41
    MatListModule,
42
    // External modules
43
    UiModule,
44
    CkadButtonModule,
45
    CkadInputModule,
46
    CkadListModule,
47
    // Other domain modules
48
    IngredientModule,
49
  ],
50
  exports: [
51
    // Module components
52
    RecipeInputSourcesListComponent,
53
  ],
54
})
55
export class RecipeInputModule {}
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc