Skip to content

Commit

Permalink
Add schwab converter test
Browse files Browse the repository at this point in the history
  • Loading branch information
dickwolff committed Feb 1, 2024
1 parent 8959c63 commit 3f413f8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/converters/degiroConverterV2.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { DeGiroConverterV2 } from "./degiroConverterV2";

describe("degiroConverter", () => {
describe("degiroConverterV2", () => {

it("should construct", () => {

Expand Down
13 changes: 13 additions & 0 deletions src/converters/schwabConverter.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { SchwabConverter } from "./schwabConverter";

describe("SchwabConverter", () => {

it("should construct", () => {

// Act
const sut = new SchwabConverter();

// Asssert
expect(sut).toBeTruthy();
});
});

0 comments on commit 3f413f8

Please sign in to comment.