Skip to content

Commit

Permalink
feat: FlightDisplay component.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Jensen committed Oct 21, 2023
1 parent 908bf2c commit 02502da
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 0 additions & 4 deletions __tests__/OpenSkyClient.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ import {DateTime} from "luxon";

describe("OpenSkyClient", () => {
describe("getAircraftPositions()", () => {
test("test", () => {
const check = DateTime.fromISO("2023-10-21T16:30:00Z", {setZone: true});
console.dir(DateTime.now().diff(check).toMillis());
});
test("Empty Mode-S code array", async () => {
const instance = OpenSkyClient.create();
expect(await instance.getPositions([])).toStrictEqual({});
Expand Down
7 changes: 7 additions & 0 deletions src/FlightDisplay.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import * as React from "react";

export function FlightDisplay() {
return (
<p>FLight Display</p>
);
}

0 comments on commit 02502da

Please sign in to comment.