Skip to content

Commit 08dfa86

Browse files
committed
Post-rebase formatting
1 parent fe3fdcb commit 08dfa86

6 files changed

Lines changed: 13 additions & 14 deletions

File tree

client/src/components/Citation/CitationsList.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ describe("CitationsList", () => {
6767
expect(citationItems.length).toBe(2);
6868

6969
expect(citationItems.at(0)!.text()).toContain(
70-
"The Galaxy platform for accessible, reproducible, and collaborative data analyses: 2024 update"
70+
"The Galaxy platform for accessible, reproducible, and collaborative data analyses: 2024 update",
7171
);
7272
expect(citationItems.at(1)!.text()).toContain(
73-
"DFTB$\\mathplus$, a software package for efficient approximate density functional theory based atomistic simulations"
73+
"DFTB$\\mathplus$, a software package for efficient approximate density functional theory based atomistic simulations",
7474
);
7575
});
7676
});

client/src/components/Form/Elements/FormData/FormData.test.js

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ describe("FormData", () => {
391391
dispatchEvent(wrapper, "dragenter");
392392
dispatchEvent(wrapper, "drop");
393393
expect(wrapper.emitted("alert")[0][0]).toEqual(
394-
"dataset is not a valid input for dataset collection parameter."
394+
"dataset is not a valid input for dataset collection parameter.",
395395
);
396396
});
397397

@@ -410,7 +410,7 @@ describe("FormData", () => {
410410
dispatchEvent(wrapper, "dragenter");
411411
dispatchEvent(wrapper, "drop");
412412
expect(wrapper.emitted("alert")[0][0]).toEqual(
413-
"dataset pair dataset collection is not a valid input for list type dataset collection parameter."
413+
"dataset pair dataset collection is not a valid input for list type dataset collection parameter.",
414414
);
415415
});
416416

@@ -470,15 +470,14 @@ describe("FormData", () => {
470470
const checkLinked = wrapper.findComponent(".custom-switch");
471471
expect(wrapper.find(".custom-switch span").text()).toContain("Linked:");
472472
expect(wrapper.find(".custom-switch span").text()).toContain(
473-
"Datasets will be run in matched order with other datasets."
473+
"Datasets will be run in matched order with other datasets.",
474474
);
475475
expect(checkLinked.props().checked).toBeTruthy();
476476
// Emit change event to uncheck the checkbox via Bootstrap-Vue component
477477
await checkLinked.vm.$emit("input", false);
478478
expect(wrapper.find(".custom-switch span").text()).toContain("Unlinked:");
479479
expect(wrapper.find(".custom-switch span").text()).toContain(
480-
"Dataset will be run against *all* other datasets."
481-
480+
"Dataset will be run against *all* other datasets.",
482481
);
483482
expect(wrapper.emitted("input")[4][0]).toEqual({
484483
batch: true,

client/src/components/Form/Elements/FormData/FormDataUri.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function initWrapper(value: DataUri) {
2626

2727
function assertLocationIsFound(
2828
wrapper: VueWrapper<any> | DOMWrapper<Element>,
29-
uriData: DataUri | DataUriCollectionElement
29+
uriData: DataUri | DataUriCollectionElement,
3030
) {
3131
if (!("location" in uriData)) {
3232
throw new Error("The DataUri type does not have a url property");

client/src/components/Workflow/List/WorkflowList.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ describe("WorkflowList", () => {
102102
http.get("/api/workflows", ({ response }) => {
103103
// TODO: We use untyped here because the response is not yet defined in the schema
104104
return response.untyped(
105-
HttpResponse.json({ data: FAKE_WORKFLOWS, totalMatches: FAKE_WORKFLOWS.length })
105+
HttpResponse.json({ data: FAKE_WORKFLOWS, totalMatches: FAKE_WORKFLOWS.length }),
106106
);
107-
})
107+
}),
108108
);
109109

110110
const wrapper = await mountWorkflowList();
@@ -124,9 +124,9 @@ describe("WorkflowList", () => {
124124
http.get("/api/workflows", ({ response }) => {
125125
// TODO: We use untyped here because the response is not yet defined in the schema
126126
return response.untyped(
127-
HttpResponse.json({ data: FAKE_WORKFLOWS, totalMatches: FAKE_WORKFLOWS.length })
127+
HttpResponse.json({ data: FAKE_WORKFLOWS, totalMatches: FAKE_WORKFLOWS.length }),
128128
);
129-
})
129+
}),
130130
);
131131

132132
const wrapper = await mountWorkflowList();

client/src/components/Workflow/WorkflowNavigationTitle.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ describe("WorkflowNavigationTitle renders", () => {
136136

137137
const editButton = actionsGroup.find(SELECTORS.EDIT_WORKFLOW_BUTTON);
138138
expect(editButton.attributes("href")).toBe(
139-
`/workflows/edit?id=${SAMPLE_WORKFLOW.id}&version=${SAMPLE_WORKFLOW.version}`
139+
`/workflows/edit?id=${SAMPLE_WORKFLOW.id}&version=${SAMPLE_WORKFLOW.version}`,
140140
);
141141
}
142142
await findEditButton("invocation");

client/src/router/guards.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { useUserStore } from "@/stores/userStore";
55
export async function requireAuth(
66
to: RouteLocationNormalized,
77
from: RouteLocationNormalized,
8-
next: NavigationGuardNext
8+
next: NavigationGuardNext,
99
) {
1010
const userStore = useUserStore();
1111
await userStore.loadUser(false);

0 commit comments

Comments
 (0)