Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenthoms committed Nov 18, 2024
1 parent b376295 commit 850d330
Showing 1 changed file with 33 additions and 3 deletions.
36 changes: 33 additions & 3 deletions frontend/tests/unit/EnsembleSet.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,39 @@ import { EnsembleSet } from "@framework/EnsembleSet";
import { describe, expect, test } from "vitest";

const ensembleArr = [
new Ensemble("DROGON", "11111111-aaaa-4444-aaaa-aaaaaaaaaaaa", "case1", "ens1", [], [], null, ""),
new Ensemble("DROGON", "11111111-aaaa-4444-aaaa-aaaaaaaaaaaa", "case1", "ens2", [], [], null, ""),
new Ensemble("DROGON", "22222222-aaaa-4444-aaaa-aaaaaaaaaaaa", "case2", "ens1", [], [], null, ""),
new Ensemble(
"DROGON",
"11111111-aaaa-4444-aaaa-aaaaaaaaaaaa",
"case1",
"ens1",
"DROGON_HAS_NO_STRAT_COLUMN",
[],
[],
null,
""
),
new Ensemble(
"DROGON",
"11111111-aaaa-4444-aaaa-aaaaaaaaaaaa",
"case1",
"ens2",
"DROGON_HAS_NO_STRAT_COLUMN",
[],
[],
null,
""
),
new Ensemble(
"DROGON",
"22222222-aaaa-4444-aaaa-aaaaaaaaaaaa",
"case2",
"ens1",
"DROGON_HAS_NO_STRAT_COLUMN",
[],
[],
null,
""
),
];

describe("EnsembleSet tests", () => {
Expand Down

0 comments on commit 850d330

Please sign in to comment.