Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
minerva
frontend
Merge requests
!9
feat(button and icon components): add button and icon components, add svgr to webpack
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
feat(button and icon components): add button and icon components, add svgr to webpack
feature/add_button_component
into
development
Overview
13
Commits
9
Pipelines
18
Changes
1
All threads resolved!
Hide all comments
Merged
mateuszmiko
requested to merge
feature/add_button_component
into
development
1 year ago
Overview
13
Commits
9
Pipelines
18
Changes
1
All threads resolved!
Hide all comments
Expand
Description
Implement button and icon components.
added Button component with easy test
added Icon component without test
added
@svgr/webpack
lib for SVG files
0
0
Merge request reports
Viewing commit
509a035f
Prev
Next
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
509a035f
test(button): fix test button
· 509a035f
Mateusz Mikołajczak
authored
1 year ago
src/shared/Button/Button.component.test.tsx
+
1
−
1
Options
@@ -7,6 +7,6 @@ describe('Button - component ', () => {
it
(
'
should render name Button
'
,
()
=>
{
renderComponent
();
expect
(
screen
.
get
All
ByText
(
'
Button
'
)).
toBeInTheDocument
();
expect
(
screen
.
getByText
(
'
Button
'
)).
toBeInTheDocument
();
});
});
Loading