File tree Expand file tree Collapse file tree 7 files changed +7
-14
lines changed
pageComponents/DatabasePage/ForTests Expand file tree Collapse file tree 7 files changed +7
-14
lines changed Original file line number Diff line number Diff line change @@ -136,9 +136,7 @@ export default function TestResultsForMergeList({ params }: Props) {
136
136
) )
137
137
) : (
138
138
< li className = { css . noTests } >
139
- < span >
140
- No test results available. Run tests to see results here.
141
- </ span >
139
+ < span > Run tests to see results here.</ span >
142
140
</ li >
143
141
) }
144
142
</ ul >
Original file line number Diff line number Diff line change 1
- /* NewGroupModal Component Styles */
2
1
.overlay {
3
2
@apply fixed inset-0 bg-stone-700 bg-opacity-50 flex items-center justify-center z-50;
4
3
}
Original file line number Diff line number Diff line change 1
- /* QueryEditor Component Styles */
2
1
.container {
3
2
@apply bg-storm-600 rounded-sm border border-storm-500 overflow-hidden p-2;
4
3
}
Original file line number Diff line number Diff line change 86
86
max-width : 100% !important ;
87
87
}
88
88
89
- /* Test result status styles */
90
89
.testResult {
91
90
@apply flex items-center gap-1 px-2 py-1 rounded text-sm text-stone-700;
92
91
min-width : 80px ;
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ export default function TestItem({
129
129
e . stopPropagation ( ) ;
130
130
onRunTest ( ) ;
131
131
} }
132
- className = { ` ${ css . testActionBtn } ${ css . runBtn } ` }
132
+ className = { cx ( css . testActionBtn , css . runBtn ) }
133
133
data-tooltip-content = "Run test"
134
134
>
135
135
< FaPlay />
@@ -219,7 +219,6 @@ export default function TestItem({
219
219
onChangeString = { value => onUpdateTest ( "assertionValue" , value ) }
220
220
placeholder = "Expected result"
221
221
className = { css . fullWidthFormInput }
222
- style = { { width : "100%" } }
223
222
/>
224
223
</ div >
225
224
</ div >
Original file line number Diff line number Diff line change 140
140
min-width : 100px ;
141
141
}
142
142
143
- /* Create Dropdown Styles */
144
143
.createButton {
145
144
@apply flex items-center justify-center px-3 py-1.5 text-sm font-semibold bg-sky-600 text-white rounded hover:bg-sky-700 transition-colors duration-200;
146
145
min-width : 100px ;
196
195
@apply border-sky-400 outline-none;
197
196
}
198
197
199
- /* Ungrouped Tests Styles */
200
198
.ungroupedDivider {
201
199
@apply font-semibold text-center w-full my-8 text-base text-storm-500;
202
200
}
216
214
.orangeGroup {
217
215
@apply text-orange-500;
218
216
}
217
+
218
+ .runAllButton {
219
+ @apply bg-green-600 text-white;
220
+ }
Original file line number Diff line number Diff line change @@ -79,10 +79,7 @@ export default function TestList({ params }: Props) {
79
79
80
80
< div className = { css . primaryActions } >
81
81
{ tests . length > 0 && (
82
- < Button
83
- onClick = { handleRunAll }
84
- className = "bg-green-600 text-white"
85
- >
82
+ < Button onClick = { handleRunAll } className = { css . runAllButton } >
86
83
Run All
87
84
</ Button >
88
85
) }
You can’t perform that action at this time.
0 commit comments