Skip to content
This repository has been archived by the owner on Sep 25, 2023. It is now read-only.

Commit

Permalink
fix: breaking tests
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Feb 7, 2023
1 parent 0239512 commit 9cdcead
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions src/events/tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ const test1: [TestStartNode, TestEndNode] = [
original: 'create an instance of test',
expanded: 'create an instance of test',
},
isPinned: false,
tags: [],
timeout: 2000,
isSkipped: false,
Expand All @@ -35,6 +36,7 @@ const test1: [TestStartNode, TestEndNode] = [
original: 'create an instance of test',
expanded: 'create an instance of test',
},
isPinned: false,
tags: [],
timeout: 2000,
isSkipped: false,
Expand All @@ -53,6 +55,7 @@ const test2: [TestStartNode, TestEndNode] = [
original: 'define timeout for the test',
expanded: 'define timeout for the test',
},
isPinned: false,
tags: [],
timeout: 2000,
isSkipped: false,
Expand All @@ -66,6 +69,7 @@ const test2: [TestStartNode, TestEndNode] = [
original: 'define timeout for the test',
expanded: 'define timeout for the test',
},
isPinned: false,
tags: [],
timeout: 2000,
isSkipped: false,
Expand All @@ -86,6 +90,7 @@ const test3: [TestStartNode, TestEndNode] = [
original: 'disable timeout for the test',
expanded: 'disable timeout for the test',
},
isPinned: false,
tags: [],
timeout: 0,
isSkipped: false,
Expand All @@ -98,6 +103,7 @@ const test3: [TestStartNode, TestEndNode] = [
original: 'disable timeout for the test',
expanded: 'disable timeout for the test',
},
isPinned: false,
tags: [],
timeout: 0,
isSkipped: false,
Expand All @@ -116,6 +122,7 @@ const test4: [TestStartNode, TestEndNode] = [
original: 'ping 3rd party service',
expanded: 'ping 3rd party service',
},
isPinned: false,
tags: [],
timeout: 0,
isSkipped: false,
Expand All @@ -129,6 +136,7 @@ const test4: [TestStartNode, TestEndNode] = [
original: 'ping 3rd party service',
expanded: 'ping 3rd party service',
},
isPinned: false,
tags: [],
timeout: 0,
isSkipped: false,
Expand All @@ -148,6 +156,7 @@ const test5: [TestStartNode, TestEndNode] = [
original: 'mark test to be skipped',
expanded: 'mark test to be skipped',
},
isPinned: false,
tags: [],
timeout: 0,
isSkipped: true,
Expand All @@ -161,6 +170,7 @@ const test5: [TestStartNode, TestEndNode] = [
original: 'mark test to be skipped',
expanded: 'mark test to be skipped',
},
isPinned: false,
tags: [],
timeout: 0,
isSkipped: true,
Expand All @@ -180,6 +190,7 @@ const test6: [TestStartNode, TestEndNode] = [
original: 'mark test as todo',
expanded: 'mark test as todo',
},
isPinned: false,
tags: [],
timeout: 0,
isSkipped: false,
Expand All @@ -192,6 +203,7 @@ const test6: [TestStartNode, TestEndNode] = [
original: 'mark test as todo',
expanded: 'mark test as todo',
},
isPinned: false,
tags: [],
timeout: 0,
isSkipped: false,
Expand All @@ -210,6 +222,7 @@ const test7: [TestStartNode, TestEndNode] = [
original: 'define tags',
expanded: 'define tags',
},
isPinned: false,
tags: ['@slow', '@regression'],
timeout: 0,
isSkipped: false,
Expand All @@ -222,6 +235,7 @@ const test7: [TestStartNode, TestEndNode] = [
original: 'define tags',
expanded: 'define tags',
},
isPinned: false,
tags: ['@slow', '@regression'],
timeout: 0,
isSkipped: false,
Expand All @@ -240,6 +254,7 @@ const test8: [TestStartNode, TestEndNode] = [
original: 'define dataset for the test "{name}"',
expanded: 'define dataset for the test "virk"',
},
isPinned: true,
tags: [],
dataset: {
size: 3,
Expand All @@ -257,6 +272,7 @@ const test8: [TestStartNode, TestEndNode] = [
original: 'define dataset for the test "{name}"',
expanded: 'define dataset for the test "virk"',
},
isPinned: true,
tags: [],
dataset: {
size: 3,
Expand All @@ -280,6 +296,7 @@ const test9: [TestStartNode, TestEndNode] = [
original: 'define dataset for the test "{name}"',
expanded: 'define dataset for the test "nikk"',
},
isPinned: false,
tags: [],
dataset: {
size: 3,
Expand All @@ -297,6 +314,7 @@ const test9: [TestStartNode, TestEndNode] = [
original: 'define dataset for the test "{name}"',
expanded: 'define dataset for the test "nikk"',
},
isPinned: false,
tags: [],
dataset: {
size: 3,
Expand All @@ -320,6 +338,7 @@ const test10: [TestStartNode, TestEndNode] = [
original: 'define dataset for the test "{name}"',
expanded: 'define dataset for the test "romain"',
},
isPinned: false,
tags: [],
dataset: {
size: 3,
Expand All @@ -337,6 +356,7 @@ const test10: [TestStartNode, TestEndNode] = [
original: 'define dataset for the test "{name}"',
expanded: 'define dataset for the test "romain"',
},
isPinned: false,
tags: [],
dataset: {
size: 3,
Expand All @@ -360,6 +380,7 @@ const test11: [TestStartNode, TestEndNode] = [
original: 'multiple calls to exec should result in a noop',
expanded: 'multiple calls to exec should result in a noop',
},
isPinned: false,
tags: [],
timeout: 0,
isSkipped: false,
Expand All @@ -372,6 +393,7 @@ const test11: [TestStartNode, TestEndNode] = [
original: 'multiple calls to exec should result in a noop',
expanded: 'multiple calls to exec should result in a noop',
},
isPinned: false,
tags: [],
timeout: 0,
isSkipped: false,
Expand All @@ -395,6 +417,7 @@ const test12: [TestStartNode, TestEndNode] = [
original: 'fail test when executor raises an exception',
expanded: 'fail test when executor raises an exception',
},
isPinned: false,
tags: [],
timeout: 0,
isSkipped: false,
Expand All @@ -407,6 +430,7 @@ const test12: [TestStartNode, TestEndNode] = [
original: 'fail test when executor raises an exception',
expanded: 'fail test when executor raises an exception',
},
isPinned: false,
tags: [],
timeout: 0,
isSkipped: false,
Expand Down Expand Up @@ -438,6 +462,7 @@ const test13: [TestStartNode, TestEndNode] = [
original: 'regression test passing',
expanded: 'regression test passing',
},
isPinned: false,
tags: [],
timeout: 0,
isSkipped: false,
Expand All @@ -451,6 +476,7 @@ const test13: [TestStartNode, TestEndNode] = [
original: 'regression test passing',
expanded: 'regression test passing',
},
isPinned: false,
tags: [],
timeout: 0,
isSkipped: false,
Expand Down

0 comments on commit 9cdcead

Please sign in to comment.