Skip to content

Commit

Permalink
Reduce test timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
ezzatron committed May 28, 2024
1 parent fab3739 commit ce2bc3c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/vitest/coords.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
import type { NvectorTestClient } from "../nvector-test-api.js";
import { createNvectorTestClient } from "../nvector-test-api.js";

const TEST_DURATION = 5000;
const TEST_DURATION = 1000;

describe("fromGeodeticCoordinates()", () => {
let nvectorTestClient: NvectorTestClient;
Expand Down
2 changes: 1 addition & 1 deletion test/vitest/delta.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {
import type { NvectorTestClient } from "../nvector-test-api.js";
import { createNvectorTestClient } from "../nvector-test-api.js";

const TEST_DURATION = 5000;
const TEST_DURATION = 1000;

describe("delta()", () => {
let nvectorTestClient: NvectorTestClient;
Expand Down
2 changes: 1 addition & 1 deletion test/vitest/ecef.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {
import type { NvectorTestClient } from "../nvector-test-api.js";
import { createNvectorTestClient } from "../nvector-test-api.js";

const TEST_DURATION = 5000;
const TEST_DURATION = 1000;

describe("fromECEF()", () => {
let nvectorTestClient: NvectorTestClient;
Expand Down
2 changes: 1 addition & 1 deletion test/vitest/euler.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import type { NvectorTestClient } from "../nvector-test-api.js";
import { createNvectorTestClient } from "../nvector-test-api.js";
import { angleDelta } from "../util.js";

const TEST_DURATION = 5000;
const TEST_DURATION = 1000;

describe("eulerXYZToRotationMatrix()", () => {
let nvectorTestClient: NvectorTestClient;
Expand Down
2 changes: 1 addition & 1 deletion test/vitest/rotation-matrix.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {
import type { NvectorTestClient } from "../nvector-test-api.js";
import { createNvectorTestClient } from "../nvector-test-api.js";

const TEST_DURATION = 5000;
const TEST_DURATION = 1000;

describe("fromRotationMatrix()", () => {
let nvectorTestClient: NvectorTestClient;
Expand Down

0 comments on commit ce2bc3c

Please sign in to comment.