You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First time reporting issue. please forgive terrible formatting and such. Also I am at work and not allowed to upload files outside our network, so I typed up a primitive example.
describe('suite', () =>{ it('should do something', () =>{}); });
But when you nest describe inside another describe, the nested revert to the non-nested look. I would expect the describes to still follow the same pattern of nesting.
describe('is grey and alone', () =>{ it('is green/red and on a new line', () =>{}); describe('expected to be nested AND grey AND alone', => { it('in line with parent describe', () => {} }) });
The text was updated successfully, but these errors were encountered:
First time reporting issue. please forgive terrible formatting and such. Also I am at work and not allowed to upload files outside our network, so I typed up a primitive example.
package.json
"karma": "~3.1.1",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.4",
"karma-htmlfile-reporter": "^0.3.8",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "~0.2.2",
"karma-junit-reporter": "~1.2.0",
"karma-webdriver-launcher": "~1.0.5",
Jasmine file
This works as expected:
describe('suite', () =>{ it('should do something', () =>{}); });
But when you nest describe inside another describe, the nested revert to the non-nested look. I would expect the describes to still follow the same pattern of nesting.
describe('is grey and alone', () =>{ it('is green/red and on a new line', () =>{}); describe('expected to be nested AND grey AND alone', => { it('in line with parent describe', () => {} }) });
The text was updated successfully, but these errors were encountered: