Skip to content

Commit

Permalink
updated imports into tests
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielJDufour committed Dec 10, 2023
1 parent 397d6e4 commit ef3e563
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/max/max.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import test from "flug";
import reprojectBoundingBox from "reproject-bbox";
import { serve } from "srvd";
import load from "../load";
import max from "./index";
import max from ".";

serve({ debug: true, max: 1, port: 3000 });

Expand Down
2 changes: 1 addition & 1 deletion src/mean/mean.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { readFileSync } from "fs";
import test from "flug";
import { serve } from "srvd";
import load from "../load";
import mean from "./mean.module";
import mean from ".";
import utils from "../utils";

serve({ debug: true, max: 2, port: 3000 });
Expand Down
2 changes: 1 addition & 1 deletion src/min/min.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import test from "flug";
import { serve } from "srvd";
import load from "../load";
import min from "./min.module";
import min from ".";

serve({ debug: true, max: 1, port: 3000 });

Expand Down
2 changes: 1 addition & 1 deletion src/mode/mode.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { readFileSync } from "fs";
import test from "flug";
import { serve } from "srvd";
import load from "../load";
import mode from "./mode.module";
import mode from ".";

serve({ debug: true, max: 1, port: 3000 });

Expand Down
2 changes: 1 addition & 1 deletion src/modes/modes.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { readFileSync } from "fs";
import test from "flug";
import { serve } from "srvd";
import load from "../load";
import modes from "./modes.module";
import modes from ".";

serve({ debug: true, port: 3000, wait: 15 });

Expand Down
2 changes: 1 addition & 1 deletion src/range/range.test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from "flug";
import { serve } from "srvd";
import range from "./index";
import range from ".";

serve({ debug: true, max: 10, port: 3000 });

Expand Down
2 changes: 1 addition & 1 deletion src/sum/sum.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import reprojectGeoJSON from "reproject-geojson";
import utils from "../utils";
import load from "../load";
import parse from "../parse";
import sum from "./sum.module";
import sum from ".";

const { fetchJson, fetchJsons } = utils;

Expand Down

0 comments on commit ef3e563

Please sign in to comment.