From bd69ab4dc701d77e808f2bab08d96d63acd297da Mon Sep 17 00:00:00 2001 From: Kevin Jahns Date: Sat, 3 Jun 2023 11:29:09 +0200 Subject: [PATCH] [testing] add TestCase.meta --- testing.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/testing.js b/testing.js index 770a01b..2c80e37 100644 --- a/testing.js +++ b/testing.js @@ -79,6 +79,12 @@ export class TestCase { * @type {string} */ this.testName = testName + /** + * This type can store custom information related to the TestCase + * + * @type {Map} + */ + this.meta = new Map() this._seed = null this._prng = null }