top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is difference between describe vs it in E2E?

0 votes
292 views
What is difference between describe vs it in E2E?
posted Jul 26, 2018 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

describe is a test suite. Basically, it will describe into components. Where as it is an individual test cases

Example:

describe('About Home Page', () => {
  // Write your Test 
  it('should landing page title match home', () => {
  });
});
answer Jul 29, 2018 by Kuldeep Apte
Similar Questions
0 votes

Hi,

browse.pause() function not working in protractor. This is an Angular 5 application generated using Angular Cli.

Any suggestion why it is not working? Actually, it's not giving any error.

...