Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Frontend
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
804
Merge Requests
54
CI / CD
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Commits
36499dfe
Commit
36499dfe
authored
2 hours ago
by
Mark Harding
Browse files
Options
Download
(fix): failing tests
parent
5ac0055e
pro-settings-2163
1 merge request
!638
Refactor PRO settings
Pipeline
#96215465
passed with stages
in 37 minutes and 46 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
src/app/common/components/form-toast/form-toast.component.spec.ts
View file @
36499dfe
import
{
async
,
ComponentFixture
,
TestBed
}
from
'
@angular/core/testing
'
;
import
{
FormToastComponent
}
from
'
./form-toast.component
'
;
import
{
FormToastService
}
from
'
../../services/form-toast.service
'
;
describe
(
'
FormToastComponent
'
,
()
=>
{
let
component
:
FormToastComponent
;
...
...
@@ -9,6 +10,7 @@ describe('FormToastComponent', () => {
beforeEach
(
async
(()
=>
{
TestBed
.
configureTestingModule
({
declarations
:
[
FormToastComponent
],
providers
:
[
FormToastService
],
}).
compileComponents
();
}));
...
...
This diff is collapsed.
src/app/common/components/page-layout/page-layout.component.spec.ts
View file @
36499dfe
...
...
@@ -8,6 +8,8 @@ import { PageLayoutComponent } from './page-layout.component';
})
class
SidebarMenuComponentMock
{
@
Input
()
catId
;
@
Input
()
menuId
;
@
Input
()
menuObj
;
}
describe
(
'
PageLayoutComponent
'
,
()
=>
{
...
...
This diff is collapsed.
Please
register
or
sign in
to comment