Skip to content

Commit

Permalink
Remove unused params
Browse files Browse the repository at this point in the history
- Delete Experiment.ts
  • Loading branch information
ljowen committed Sep 24, 2024
1 parent c2b55ba commit 4656425
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 69 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ describe("WebProcessingServiceCatalogFunction", function () {
let dispose: any;
job = (await wps.submitJob()) as WebProcessingServiceCatalogFunctionJob;

await new Promise<void>((resolve, _reject) => {
await new Promise<void>((resolve) => {
dispose = reaction(
() => job.downloadedResults,
() => {
Expand Down Expand Up @@ -220,7 +220,7 @@ describe("WebProcessingServiceCatalogFunction", function () {
let dispose2: any;

// Wait for job to finish polling, then check if finished
await new Promise<void>((resolve, _reject) => {
await new Promise<void>((resolve) => {
dispose2 = reaction(
() => job.refreshEnabled,
() => {
Expand Down Expand Up @@ -307,7 +307,7 @@ describe("WebProcessingServiceCatalogFunction", function () {
let dispose2: any;

// Wait for job to finish polling, then check if failed
await new Promise<void>((resolve, _reject) => {
await new Promise<void>((resolve) => {
dispose2 = reaction(
() => job.refreshEnabled,
() => {
Expand Down
66 changes: 0 additions & 66 deletions test/Models/Experiment.ts

This file was deleted.

0 comments on commit 4656425

Please sign in to comment.