Skip to content
Next
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Minds Frontend
Project
Project
Details
Activity
Releases
Dependency List
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
839
Issues
839
List
Boards
Labels
Service Desk
Milestones
Merge Requests
45
Merge Requests
45
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
List
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Compare Revisions
17fd69acb8c126c97c394c058262896f386bf794...ba4d39a118be397de036a3f5a1df2361946e8909
Source
ba4d39a118be397de036a3f5a1df2361946e8909
Select Git revision
...
Target
17fd69acb8c126c97c394c058262896f386bf794
Select Git revision
Compare
Commits (2)
(fix): removed fit
· 792bf3de
Marcelo Rivera
authored
46 minutes ago
792bf3de
(fix): spec tests
· ba4d39a1
Marcelo Rivera
authored
42 minutes ago
ba4d39a1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
tags.spec.ts
src/app/common/pipes/tags.spec.ts
+1
-1
groups-settings-button.spec.ts
...app/modules/groups/profile/groups-settings-button.spec.ts
+4
-0
No files found.
src/app/common/pipes/tags.spec.ts
View file @
ba4d39a1
...
...
@@ -94,7 +94,7 @@ describe('TagPipe', () => {
expect
(
transformedString
).
toEqual
(
'
<a class="tag" href="/test1" target="_blank">@test1</a> <a class="tag" href="/test2" target="_blank">@test2</a>
'
);
});
f
it
(
'
should transform many adjacent tags
'
,
()
=>
{
it
(
'
should transform many adjacent tags
'
,
()
=>
{
const
pipe
=
new
TagsPipe
(
featuresServiceMock
);
const
string
=
'
@test1 @test2 @test3 @test4 @test5 @test6 @test7 @test8 @test9 @test10 @test11 @test12 @test13 @test14 @test15
'
;
console
.
log
(
string
);
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/groups/profile/groups-settings-button.spec.ts
View file @
ba4d39a1
...
...
@@ -37,6 +37,10 @@ describe('GroupsSettingsButton', () => {
TestBed
.
configureTestingModule
({
declarations
:
[
MockDirective
({
selector
:
'
[mdl]
'
,
inputs
:
[
'
mdl
'
]
}),
MockDirective
({
selector
:
'
[mIfFeature]
'
,
inputs
:
[
'
mIfFeature
'
],
}),
MockComponent
({
selector
:
'
m-modal
'
,
template
:
'
<ng-content></ng-content>
'
,
...
...
This diff is collapsed.
Click to expand it.