Skip to content

Commit

Permalink
fix: unit tests (TBS)
Browse files Browse the repository at this point in the history
  • Loading branch information
thsig authored and eysi09 committed Oct 23, 2023
1 parent 0b57d8d commit 3dcd263
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions core/test/unit/src/config-graph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1477,98 +1477,84 @@ describe("ConfigGraph (module-based configs)", () => {
expect(rendered.nodes).to.include.deep.members([
{
kind: "Build",
type: "test",
name: "module-a",
key: "module-a",
disabled: false,
},
{
kind: "Build",
type: "test",
name: "module-b",
key: "module-b",
disabled: false,
},
{
kind: "Build",
type: "test",
name: "module-c",
key: "module-c",
disabled: false,
},
{
kind: "Test",
type: "test",
name: "module-c-unit",
key: "module-c-unit",
disabled: false,
},
{
kind: "Test",
type: "test",
name: "module-c-integ",
key: "module-c-integ",
disabled: false,
},
{
kind: "Run",
type: "test",
name: "task-c",
key: "task-c",
disabled: false,
},
{
kind: "Deploy",
type: "test",
name: "service-c",
key: "service-c",
disabled: false,
},
{
kind: "Test",
type: "test",
name: "module-a-unit",
key: "module-a-unit",
disabled: false,
},
{
kind: "Test",
type: "test",
name: "module-a-integration",
key: "module-a-integration",
disabled: false,
},
{
kind: "Run",
type: "test",
name: "task-a",
key: "task-a",
disabled: false,
},
{
kind: "Test",
type: "test",
name: "module-b-unit",
key: "module-b-unit",
disabled: false,
},
{
kind: "Run",
type: "test",
name: "task-b",
key: "task-b",
disabled: false,
},
{
kind: "Deploy",
type: "test",
name: "service-a",
key: "service-a",
disabled: false,
},
{
kind: "Deploy",
type: "test",
name: "service-b",
key: "service-b",
disabled: false,
Expand All @@ -1585,7 +1571,6 @@ describe("ConfigGraphNode", () => {
const res = node.render()
expect(res).to.eql({
kind: "Build",
type: "container",
name: "module-a",
key: "module-a",
disabled: false,
Expand All @@ -1597,7 +1582,6 @@ describe("ConfigGraphNode", () => {
const res = node.render()
expect(res).to.eql({
kind: "Deploy",
type: "container",
name: "service-a",
key: "service-a",
disabled: false,
Expand All @@ -1609,7 +1593,6 @@ describe("ConfigGraphNode", () => {
const res = node.render()
expect(res).to.eql({
kind: "Run",
type: "container",
name: "task-a",
key: "task-a",
disabled: false,
Expand All @@ -1621,7 +1604,6 @@ describe("ConfigGraphNode", () => {
const res = node.render()
expect(res).to.eql({
kind: "Test",
type: "container",
name: "module-a.test-a",
key: "module-a.test-a",
disabled: false,
Expand All @@ -1633,7 +1615,6 @@ describe("ConfigGraphNode", () => {
const res = node.render()
expect(res).to.eql({
kind: "Test",
type: "container",
name: "module-a.test-a",
key: "module-a.test-a",
disabled: true,
Expand Down

0 comments on commit 3dcd263

Please sign in to comment.