Skip to content

Commit 2addd3c

Browse files
fix ci
1 parent fc81c29 commit 2addd3c

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

graphql-server/src/tests/test.resolver.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import {
1919

2020
@InputType()
2121
class TestArgs {
22-
@Field()
2322
@Field()
2423
testName: string;
2524

web/renderer/components/pageComponents/DatabasePage/ForTests/TestGroup/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@ export default function TestGroup({ group, className }: Props) {
141141
onFocus={() => setIsEditing(true)}
142142
onClick={e => e.stopPropagation()}
143143
/>
144-
<span
145-
className={css.testCount}
146-
>{testCount} {pluralize(testCount, "test")}</span>
144+
<span className={css.testCount}>
145+
{testCount} {pluralize(testCount, "test")}
146+
</span>
147147
</div>
148148
<div className={css.groupHeaderRight}>
149149
{groupResult && (

web/renderer/components/pageComponents/DatabasePage/ForTests/context/index.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,7 @@ export function TestProvider({ children, params }: Props) {
7575

7676
useEffect(() => {
7777
if (!data?.tests.list) return;
78-
const initialTests = data.tests.list.map(
79-
({ __typename, ...test }) => test,
80-
);
78+
const initialTests = data.tests.list.map(({ __typename, ...test }) => test);
8179
setState({ tests: initialTests });
8280
}, [data?.tests.list, setState]);
8381

0 commit comments

Comments
 (0)