File tree Expand file tree Collapse file tree 3 files changed +2
-10
lines changed
graphql-server/src/queryFactory/dolt
web/renderer/components/pageComponents/DatabasePage/ForTests Expand file tree Collapse file tree 3 files changed +2
-10
lines changed Original file line number Diff line number Diff line change 1
1
import { SortBranchesBy } from "../../branches/branch.enum" ;
2
- import { RawRows , TestIdentifierArgs } from "../types" ;
2
+ import { RawRows } from "../types" ;
3
3
4
4
// TABLE
5
5
Original file line number Diff line number Diff line change @@ -19,14 +19,6 @@ export const LIST_TESTS = gql`
19
19
` ;
20
20
21
21
export const SAVE_TESTS = gql `
22
- fragment TestFragment on Test {
23
- testName
24
- testGroup
25
- testQuery
26
- assertionType
27
- assertionComparator
28
- assertionValue
29
- }
30
22
mutation SaveTests(
31
23
$databaseName: String!
32
24
$refName: String!
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ export function groupTests(
42
42
43
43
export function sortGroupEntries (
44
44
groupedTests : Record < string , Test [ ] > ,
45
- ) : [ string , Test [ ] ] [ ] {
45
+ ) : Array < [ string , Test [ ] ] > {
46
46
const entries = Object . entries ( groupedTests ) ;
47
47
const groupOrder = entries . map ( entry => entry [ 0 ] ) ;
48
48
You can’t perform that action at this time.
0 commit comments