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
{{ message }}
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.
if two lines in an scenario code are separated by a just a new line without any space characters, the new line is not preserved in the docs app. If I add an extra space, to before the line break, the blank line is preserved.
Example: @Scenario
it('should initialize the task list with for tasks', function() {
element('.doc-example ul li a:contains("X"):first').click();
expect(repeater('.doc-example ul li', 'task in tasks').count()).toBe(3);
element('.doc-example ul li a:contains("X"):last').click();
expect(repeater('.doc-example ul li', 'task in tasks').count()).toBe(2);
expect(repeater('.doc-example ul li', 'task in tasks').column('task')).
toEqual(['Read Documentation', 'Check out demos']);
});
The text was updated successfully, but these errors were encountered:
if two lines in an scenario code are separated by a just a new line without any space characters, the new line is not preserved in the docs app. If I add an extra space, to before the line break, the blank line is preserved.
Example:
@Scenario
it('should initialize the task list with for tasks', function() {
element('.doc-example ul li a:contains("X"):first').click();
expect(repeater('.doc-example ul li', 'task in tasks').count()).toBe(3);
The text was updated successfully, but these errors were encountered: