Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

addContext in before & after hooks add context in tests instead of beforeHook & afterHook #284

Closed
scenaristeur opened this issue Jun 13, 2019 · 1 comment

Comments

@scenaristeur
Copy link

scenaristeur commented Jun 13, 2019

Some weeks ago, I could use 'addContext' in afterHook but for some unknown reason, this doesn't work anymore today : the context is added to the inner tests and not to the hook :

when I use just a "before" hook, the context is added to the first test instead of to the 'beforeHook':
this code :

describe('Context', () => {
  before('before', function () {
    addContext(this, 'some context before');
  });

  it('tests 1', () => {
    console.log("test 1")
  });

  it('tests 2', () => {
    console.log("test 2")
  });

  it('tests 3', () => {
    console.log("test 3")
  });

  it('tests 4', () => {
    console.log("test 4")
  });
});

gives me

{
  "stats": {
    "suites": 1,
    "tests": 4,
    "passes": 4,
    "pending": 0,
    "failures": 0,
    "start": "2019-06-13T08:00:44.630Z",
    "end": "2019-06-13T08:00:44.656Z",
    "duration": 26,
    "testsRegistered": 4,
    "passPercent": 100,
    "pendingPercent": 0,
    "other": 0,
    "hasOther": false,
    "skipped": 0,
    "hasSkipped": false
  },
  "results": [
    {
      "uuid": "8fb84e94-6467-42c5-960f-e6613a574085",
      "title": "",
      "fullFile": "",
      "file": "",
      "beforeHooks": [],
      "afterHooks": [],
      "tests": [],
      "suites": [
        {
          "uuid": "f713a014-e896-485a-9753-6dc48850240f",
          "title": "Context",
          "fullFile": "/produits/wsimu5/simulateur/scenarios/testContext.js",
          "file": "/produits/wsimu5/simulateur/scenarios/testContext.js",
          "beforeHooks": [
            {
              "title": "\"before all\" hook: before",
              "fullTitle": "Context \"before all\" hook: before",
              "timedOut": false,
              "duration": 1,
              "state": null,
              "speed": null,
              "pass": false,
              "fail": false,
              "pending": false,
   =>       "context": null,
   =>       "code": "addContext(this, 'some context before');",
              "err": {},
              "uuid": "ba35375d-6d0d-4311-8dfa-b31799fa2006",
              "parentUUID": "f713a014-e896-485a-9753-6dc48850240f",
              "isHook": true,
              "skipped": false
            }
          ],
          "afterHooks": [],
          "tests": [
            {
              "title": "tests 1",
              "fullTitle": "Context tests 1",
              "timedOut": false,
              "duration": 0,
              "state": "passed",
              "speed": "fast",
              "pass": true,
              "fail": false,
              "pending": false,
=>          "context": "\"some context before\"",
              "code": "console.log(\"test 1\")",
              "err": {},
              "uuid": "d26699f8-7f5e-48df-adea-5e17cadb7dd7",
              "parentUUID": "f713a014-e896-485a-9753-6dc48850240f",
              "isHook": false,
              "skipped": false
            },
            {
              "title": "tests 2",
              "fullTitle": "Context tests 2",
              "timedOut": false,
              "duration": 0,
              "state": "passed",
              "speed": "fast",
              "pass": true,
              "fail": false,
              "pending": false,
              "context": null,
              "code": "console.log(\"test 2\")",
              "err": {},
              "uuid": "fb17bc6f-4c12-494f-90c0-0deaca4e713b",
              "parentUUID": "f713a014-e896-485a-9753-6dc48850240f",
              "isHook": false,
              "skipped": false
            },
            {
              "title": "tests 3",
              "fullTitle": "Context tests 3",
              "timedOut": false,
              "duration": 0,
              "state": "passed",
              "speed": "fast",
              "pass": true,
              "fail": false,
              "pending": false,
              "context": null,
              "code": "console.log(\"test 3\")",
              "err": {},
              "uuid": "7c56bf39-55ad-4fab-b528-51538fd5fef8",
              "parentUUID": "f713a014-e896-485a-9753-6dc48850240f",
              "isHook": false,
              "skipped": false
            },
            {
              "title": "tests 4",
              "fullTitle": "Context tests 4",
              "timedOut": false,
              "duration": 0,
              "state": "passed",
              "speed": "fast",
              "pass": true,
              "fail": false,
              "pending": false,
              "context": null,
              "code": "console.log(\"test 4\")",
              "err": {},
              "uuid": "def89e07-af8f-47e6-84cd-a1338f9f67a6",
              "parentUUID": "f713a014-e896-485a-9753-6dc48850240f",
              "isHook": false,
              "skipped": false
            }
          ],
          "suites": [],
          "passes": [
            "d26699f8-7f5e-48df-adea-5e17cadb7dd7",
            "fb17bc6f-4c12-494f-90c0-0deaca4e713b",
            "7c56bf39-55ad-4fab-b528-51538fd5fef8",
            "def89e07-af8f-47e6-84cd-a1338f9f67a6"
          ],
          "failures": [],
          "pending": [],
          "skipped": [],
          "duration": 0,
          "root": false,
          "rootEmpty": false,
          "_timeout": 2000
        }
      ],
      "passes": [],
      "failures": [],
      "pending": [],
      "skipped": [],
      "duration": 0,
      "root": true,
      "rootEmpty": true,
      "_timeout": 2000
    }
  ],
  "meta": {
    "mocha": {
      "version": "6.1.4"
    },
    "mochawesome": {
      "options": {
        "quiet": false,
        "reportFilename": "mochawesome",
        "saveHtml": true,
        "saveJson": true,
        "useInlineDiffs": false
      },
      "version": "4.0.0"
    },
    "marge": {
      "options": {
        "reportDir": "/var/lib/jenkins/workspace/testContext/mochawesome-report",
        "reportFilename": "mochawesome"
      },
      "version": "4.0.0"
    }
  }
}

When I add an "after" hook, the context is added to the last test instead of the "afterHook" in :

describe('Context', () => {
  before('before', function () {
    addContext(this, 'some context before');
  });

  it('tests 1', () => {
    console.log("test 1")
  });

  it('tests 2', () => {
    console.log("test 2")
  });

  it('tests 3', () => {
    console.log("test 3")
  });

  it('tests 4', () => {
    console.log("test 4")
  });

  after('after', function () {
    addContext(this, 'some context after');
  });
});

this gives me

{
  "stats": {
    "suites": 1,
    "tests": 4,
    "passes": 4,
    "pending": 0,
    "failures": 0,
    "start": "2019-06-13T08:02:33.479Z",
    "end": "2019-06-13T08:02:33.505Z",
    "duration": 26,
    "testsRegistered": 4,
    "passPercent": 100,
    "pendingPercent": 0,
    "other": 0,
    "hasOther": false,
    "skipped": 0,
    "hasSkipped": false
  },
  "results": [
    {
      "uuid": "f0b2f791-3624-4adf-9e72-e2ac6004430d",
      "title": "",
      "fullFile": "",
      "file": "",
      "beforeHooks": [],
      "afterHooks": [],
      "tests": [],
      "suites": [
        {
          "uuid": "9234ecd4-a10f-44c5-9442-733ab847c009",
          "title": "Context",
          "fullFile": "/produits/wsimu5/simulateur/scenarios/testContext.js",
          "file": "/produits/wsimu5/simulateur/scenarios/testContext.js",
          "beforeHooks": [
            {
              "title": "\"before all\" hook: before",
              "fullTitle": "Context \"before all\" hook: before",
              "timedOut": false,
              "duration": 0,
              "state": null,
              "speed": null,
              "pass": false,
              "fail": false,
              "pending": false,
              "context": null,
              "code": "addContext(this, 'some context before');",
              "err": {},
              "uuid": "442e8c39-ac87-4cac-9754-db6e42b28c70",
              "parentUUID": "9234ecd4-a10f-44c5-9442-733ab847c009",
              "isHook": true,
              "skipped": false
            }
          ],
          "afterHooks": [
            {
              "title": "\"after all\" hook: after",
              "fullTitle": "Context \"after all\" hook: after",
              "timedOut": false,
              "duration": 0,
              "state": null,
              "speed": null,
              "pass": false,
              "fail": false,
              "pending": false,
=>          "context": null,
=>          "code": "addContext(this, 'some context after');",
              "err": {},
              "uuid": "1a371e05-1eff-4145-9a4d-cc49c8317bd5",
              "parentUUID": "9234ecd4-a10f-44c5-9442-733ab847c009",
              "isHook": true,
              "skipped": false
            }
          ],
          "tests": [
            {
              "title": "tests 1",
              "fullTitle": "Context tests 1",
              "timedOut": false,
              "duration": 1,
              "state": "passed",
              "speed": "fast",
              "pass": true,
              "fail": false,
              "pending": false,
              "context": "\"some context before\"",
              "code": "console.log(\"test 1\")",
              "err": {},
              "uuid": "39f1d2cb-5092-4545-8dcb-b66bc1951fcc",
              "parentUUID": "9234ecd4-a10f-44c5-9442-733ab847c009",
              "isHook": false,
              "skipped": false
            },
            {
              "title": "tests 2",
              "fullTitle": "Context tests 2",
              "timedOut": false,
              "duration": 0,
              "state": "passed",
              "speed": "fast",
              "pass": true,
              "fail": false,
              "pending": false,
              "context": null,
              "code": "console.log(\"test 2\")",
              "err": {},
              "uuid": "63da3e5a-980d-4feb-b4c3-592b6a1e557c",
              "parentUUID": "9234ecd4-a10f-44c5-9442-733ab847c009",
              "isHook": false,
              "skipped": false
            },
            {
              "title": "tests 3",
              "fullTitle": "Context tests 3",
              "timedOut": false,
              "duration": 0,
              "state": "passed",
              "speed": "fast",
              "pass": true,
              "fail": false,
              "pending": false,
              "context": null,
              "code": "console.log(\"test 3\")",
              "err": {},
              "uuid": "1aafd69d-8a0b-488e-a1fa-713dfe2520cc",
              "parentUUID": "9234ecd4-a10f-44c5-9442-733ab847c009",
              "isHook": false,
              "skipped": false
            },
            {
              "title": "tests 4",
              "fullTitle": "Context tests 4",
              "timedOut": false,
              "duration": 0,
              "state": "passed",
              "speed": "fast",
              "pass": true,
              "fail": false,
              "pending": false,
=>          "context": "\"some context after\"",
              "code": "console.log(\"test 4\")",
              "err": {},
              "uuid": "8fc601a1-5d73-4bab-9e23-bc4a5b19518f",
              "parentUUID": "9234ecd4-a10f-44c5-9442-733ab847c009",
              "isHook": false,
              "skipped": false
            }
          ],
          "suites": [],
          "passes": [
            "39f1d2cb-5092-4545-8dcb-b66bc1951fcc",
            "63da3e5a-980d-4feb-b4c3-592b6a1e557c",
            "1aafd69d-8a0b-488e-a1fa-713dfe2520cc",
            "8fc601a1-5d73-4bab-9e23-bc4a5b19518f"
          ],
          "failures": [],
          "pending": [],
          "skipped": [],
          "duration": 1,
          "root": false,
          "rootEmpty": false,
          "_timeout": 2000
        }
      ],
      "passes": [],
      "failures": [],
      "pending": [],
      "skipped": [],
      "duration": 0,
      "root": true,
      "rootEmpty": true,
      "_timeout": 2000
    }
  ],
  "meta": {
    "mocha": {
      "version": "6.1.4"
    },
    "mochawesome": {
      "options": {
        "quiet": false,
        "reportFilename": "mochawesome",
        "saveHtml": true,
        "saveJson": true,
        "useInlineDiffs": false
      },
      "version": "4.0.0"
    },
    "marge": {
      "options": {
        "reportDir": "/var/lib/jenkins/workspace/testContext/mochawesome-report",
        "reportFilename": "mochawesome"
      },
      "version": "4.0.0"
    }
  }
}

Does anyone have the same problem or I am the only one ? thxs
David

@scenaristeur scenaristeur changed the title addContext in after hook addContext in before & after hooks add context in tests instead of beforeHook & afterHook Jun 13, 2019
scenaristeur added a commit to scenaristeur/mochawesome that referenced this issue Jun 13, 2019
Proposition for adamgruber#284
expected : 
- addContext in 'before' hook --> add the context in results.suites[0].beforeHooks[0]
- addContext in 'after' hook --> add the context in results.suites[0].afterHooks[0]
- addContext in 'afterEach' and 'beforeEach' hooks --> add the context to each test

But in addContext module, it's difficult to know if we are in a before/after or in a beaforeEach/afterEach, so the only way I found is to add a third parameter, which indicates if the context must be added in global (beforeHooks & afterHooks) instead of in the firs or last test

here is an example of use :
```
describe('Context', async function() {
  this.timeout(120000);
  var count = 0;
  
  it('Open Spoggy', async function() {
    step = this.test.title;
    await driver.get('https://scenaristeur.github.io/spoggy-simple/');
    await driver.wait(until.titleIs('Spoggy'), 10000);
    const title1 = await driver.getTitle();
    expect(title1).to.equal("Spoggy");
  });
  
  it('test 1', async function() {
    console.log("test 1")
  });
  
  it('test 2', async function() {
    console.log("test 2")
  });
  
  it('test 3', async function() {
    addContext(this, 'some context in 3');
    console.log("test 3")
  });
  
  it('test 4', async function() {
    console.log("test 4")
  });
  
  before('avant', function () {
    addContext(this, 'some context before',true);
  });
  beforeEach('avant chaque', async function () {
    addContext(this, 'some context before each');
  });
  afterEach('après chaque', async function () {
    addContext(this, 'some context after each');
  });
  
  after('après', async function() {
    addContext(this, 'some context after',true);
  });
});
```
that gives me : 
```
 Context
true ' currentTest : ' 'Open Spoggy' ' test : ' '"before all" hook: avant' '-> context in : ' '"before all" hook: avant'
false ' currentTest : ' 'Open Spoggy' ' test : ' '"before each" hook: avant chaque' '-> context in : ' 'Open Spoggy'

    ✓ Open Spoggy (7415ms)
false ' currentTest : ' 'Open Spoggy' ' test : ' '"after each" hook: après chaque' '-> context in : ' 'Open Spoggy'
false ' currentTest : ' 'test 1' ' test : ' '"before each" hook: avant chaque' '-> context in : ' 'test 1'
test 1
    ✓ test 1
false ' currentTest : ' 'test 1' ' test : ' '"after each" hook: après chaque' '-> context in : ' 'test 1'
false ' currentTest : ' 'test 2' ' test : ' '"before each" hook: avant chaque' '-> context in : ' 'test 2'
test 2
    ✓ test 2
false ' currentTest : ' 'test 2' ' test : ' '"after each" hook: après chaque' '-> context in : ' 'test 2'
false ' currentTest : ' 'test 3' ' test : ' '"before each" hook: avant chaque' '-> context in : ' 'test 3'
false ' currentTest : ' 'no currentTest var ' ' test : ' 'test 3' '-> context in : ' 'test 3'
test 3
    ✓ test 3
false ' currentTest : ' 'test 3' ' test : ' '"after each" hook: après chaque' '-> context in : ' 'test 3'
false ' currentTest : ' 'test 4' ' test : ' '"before each" hook: avant chaque' '-> context in : ' 'test 4'
test 4
    ✓ test 4
false ' currentTest : ' 'test 4' ' test : ' '"after each" hook: après chaque' '-> context in : ' 'test 4'
true ' currentTest : ' 'test 4' ' test : ' '"after all" hook: après' '-> context in : ' '"after all" hook: après'
```




```
  before('avant', function () {
    addContext(this, 'some context before',true);
  });
  beforeEach('avant chaque', async function () {
    addContext(this, 'some context before each');
  });
  afterEach('après chaque', async function () {
    addContext(this, 'some context after each');
  });
  
  after('après', async function() {
    addContext(this, 'some context after',true);
  });
```

and the json is as expected : 

```
{
  "stats": {
    "suites": 1,
    "tests": 5,
    "passes": 5,
    "pending": 0,
    "failures": 0,
    "start": "2019-06-13T14:46:03.397Z",
    "end": "2019-06-13T14:46:10.844Z",
    "duration": 7447,
    "testsRegistered": 5,
    "passPercent": 100,
    "pendingPercent": 0,
    "other": 0,
    "hasOther": false,
    "skipped": 0,
    "hasSkipped": false
  },
  "results": [
    {
      "uuid": "f20af57e-738d-473b-93e5-dd94b0145fa3",
      "title": "",
      "fullFile": "",
      "file": "",
      "beforeHooks": [],
      "afterHooks": [],
      "tests": [],
      "suites": [
        {
          "uuid": "179c7517-f0b5-4520-ac2a-0acb7f8ed6f6",
          "title": "Context",
          "fullFile": "/produits/wsimu5/simulateur/scenarios/testContext.js",
          "file": "/produits/wsimu5/simulateur/scenarios/testContext.js",
=>          "beforeHooks": [
            {
              "title": "\"before all\" hook: avant",
              "fullTitle": "Context \"before all\" hook: avant",
              "timedOut": false,
              "duration": 1,
              "state": null,
              "speed": null,
              "pass": false,
              "fail": false,
              "pending": false,
=>              "context": "\"some context before\"",
              "code": "addContext(this, 'some context before',true);\n//  count++;\n//  addContext(this, { title:'counter', value:\"before : \"+count });",
              "err": {},
              "uuid": "1ac94093-73c7-4520-806b-daa6c631b305",
              "parentUUID": "179c7517-f0b5-4520-ac2a-0acb7f8ed6f6",
              "isHook": true,
              "skipped": false
            },
            {
              "title": "\"before each\" hook: avant chaque",
              "fullTitle": "Context \"before each\" hook: avant chaque",
              "timedOut": false,
              "duration": 1,
              "state": null,
              "speed": null,
              "pass": false,
              "fail": false,
              "pending": false,
              "context": null,
              "code": "addContext(this, 'some context before each');\n/*  addContext(this, {\ntitle: 'beforeEach context',\nvalue: { b: 2 }\n  });\n  count++;\n  addContext(this, { title:'counter', value:\"beforeEach : \"+count });*/",
              "err": {},
              "uuid": "4516ed45-4c85-47be-9ba4-826a6fe5f3d3",
              "parentUUID": "179c7517-f0b5-4520-ac2a-0acb7f8ed6f6",
              "isHook": true,
              "skipped": false
            }
          ],
=>          "afterHooks": [
            {
              "title": "\"after all\" hook: après",
              "fullTitle": "Context \"after all\" hook: après",
              "timedOut": false,
              "duration": 0,
              "state": null,
              "speed": null,
              "pass": false,
              "fail": false,
              "pending": false,
=>              "context": "\"some context after\"",
              "code": "addContext(this, 'some context after',true);\n/*  count++;\naddContext(this, { title:'counter', value:\"after : \"+count });\n*/\n//  addContext(this, { title:'config', value:\"after\" });\ndriver.quit();",
              "err": {},
              "uuid": "9c8cc803-23ae-4fcd-b8c6-737d00ca276e",
              "parentUUID": "179c7517-f0b5-4520-ac2a-0acb7f8ed6f6",
              "isHook": true,
              "skipped": false
            },
            {
              "title": "\"after each\" hook: après chaque",
              "fullTitle": "Context \"after each\" hook: après chaque",
              "timedOut": false,
              "duration": 0,
              "state": null,
              "speed": null,
              "pass": false,
              "fail": false,
              "pending": false,
              "context": null,
              "code": "addContext(this, 'some context after each');\n/*  addContext(this, {\ntitle: 'afterEach context',\nvalue: { a: 1 }\n});\ncount++;\naddContext(this, { title:'counter', value:\"afterEach : \"+count });*/",
              "err": {},
              "uuid": "230e0487-14c3-4c00-b18f-a470d0357195",
              "parentUUID": "179c7517-f0b5-4520-ac2a-0acb7f8ed6f6",
              "isHook": true,
              "skipped": false
            }
          ],
          "tests": [
            {
              "title": "Open Spoggy",
              "fullTitle": "Context Open Spoggy",
              "timedOut": false,
              "duration": 7415,
              "state": "passed",
              "speed": "slow",
              "pass": true,
              "fail": false,
              "pending": false,
=>              "context": "[\n  \"some context before each\",\n  \"some context after each\"\n]",
              "code": "step = this.test.title;\nawait driver.get('https://scenaristeur.github.io/spoggy-simple/');\nawait driver.wait(until.titleIs('Spoggy'), 10000);\nconst title1 = await driver.getTitle();\nexpect(title1).to.equal(\"Spoggy\");",
              "err": {},
              "uuid": "3c7662d8-c055-420d-bf0f-b9f0fd132cf5",
              "parentUUID": "179c7517-f0b5-4520-ac2a-0acb7f8ed6f6",
              "isHook": false,
              "skipped": false
            },
            {
              "title": "test 1",
              "fullTitle": "Context test 1",
              "timedOut": false,
              "duration": 1,
              "state": "passed",
              "speed": "fast",
              "pass": true,
              "fail": false,
              "pending": false,
=>              "context": "[\n  \"some context before each\",\n  \"some context after each\"\n]",
              "code": "console.log(\"test 1\")",
              "err": {},
              "uuid": "25c038d5-c939-4e5f-9083-2bd808d80a3a",
              "parentUUID": "179c7517-f0b5-4520-ac2a-0acb7f8ed6f6",
              "isHook": false,
              "skipped": false
            },
            {
              "title": "test 2",
              "fullTitle": "Context test 2",
              "timedOut": false,
              "duration": 0,
              "state": "passed",
              "speed": "fast",
              "pass": true,
              "fail": false,
              "pending": false,
=>              "context": "[\n  \"some context before each\",\n  \"some context after each\"\n]",
              "code": "console.log(\"test 2\")",
              "err": {},
              "uuid": "c58ed9d0-2060-4f65-a348-41e0ba5011c5",
              "parentUUID": "179c7517-f0b5-4520-ac2a-0acb7f8ed6f6",
              "isHook": false,
              "skipped": false
            },
            {
              "title": "test 3",
              "fullTitle": "Context test 3",
              "timedOut": false,
              "duration": 1,
              "state": "passed",
              "speed": "fast",
              "pass": true,
              "fail": false,
              "pending": false,
=>              "context": "[\n  \"some context before each\",\n  \"some context in 3\",\n  \"some context after each\"\n]",
              "code": "addContext(this, 'some context in 3');\n//  count++;\n//  addContext(this, { title:'counter', value:\"counter in 3 : \"+count });\nconsole.log(\"test 3\")",
              "err": {},
              "uuid": "c80968a0-04eb-4a3e-9e25-94c153df937a",
              "parentUUID": "179c7517-f0b5-4520-ac2a-0acb7f8ed6f6",
              "isHook": false,
              "skipped": false
            },
            {
              "title": "test 4",
              "fullTitle": "Context test 4",
              "timedOut": false,
              "duration": 0,
              "state": "passed",
              "speed": "fast",
              "pass": true,
              "fail": false,
              "pending": false,
=>              "context": "[\n  \"some context before each\",\n  \"some context after each\"\n]",
              "code": "console.log(\"test 4\")",
              "err": {},
              "uuid": "543751ac-0700-4871-ac33-fa72217b2169",
              "parentUUID": "179c7517-f0b5-4520-ac2a-0acb7f8ed6f6",
              "isHook": false,
              "skipped": false
            }
          ],
          "suites": [],
          "passes": [
            "3c7662d8-c055-420d-bf0f-b9f0fd132cf5",
            "25c038d5-c939-4e5f-9083-2bd808d80a3a",
            "c58ed9d0-2060-4f65-a348-41e0ba5011c5",
            "c80968a0-04eb-4a3e-9e25-94c153df937a",
            "543751ac-0700-4871-ac33-fa72217b2169"
          ],
          "failures": [],
          "pending": [],
          "skipped": [],
          "duration": 7417,
          "root": false,
          "rootEmpty": false,
          "_timeout": 120000
        }
      ],
      "passes": [],
      "failures": [],
      "pending": [],
      "skipped": [],
      "duration": 0,
      "root": true,
      "rootEmpty": true,
      "_timeout": 2000
    }
  ],
  "meta": {
    "mocha": {
      "version": "6.1.4"
    },
    "mochawesome": {
      "options": {
        "quiet": false,
        "reportFilename": "mochawesome",
        "saveHtml": true,
        "saveJson": true,
        "useInlineDiffs": false
      },
      "version": "4.0.0"
    },
    "marge": {
      "options": {
        "reportDir": "/var/lib/jenkins/workspace/testContext/mochawesome-report",
        "reportFilename": "mochawesome"
      },
      "version": "4.0.0"
    }
  }
}


```
@adamgruber
Copy link
Owner

Fixed by #286

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants