1.0.15 • Published 6 months ago

@mmisty/cypress-tags v1.0.15

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
6 months ago

Cypress-tags

This plugin helps to parse tags to add them into Mocha Test object, so you can access tags within hooks and within a test.

Example:

    it('test with tags @test', { tags: ['@abc'] }, function () {
      // this.test?.tags object has all tags
      expect(this.test?.tags).to.deep.eq([
        { tag: '@abc', info: [] },
        { tag: '@test', info: [] },
      ]);
    });

Installation / setup

  1. install with npm:

    npm i -D @mmisty/cypress-tags

    or with yarn:

    yarn add @mmisty/cypress-tags -D
  2. configure project:

    Put into your support.ts (or e2e.ts) file

    import '@mmisty/cypress-tags'
  3. That's it! Types should be added automatically if you use typescript.

Adding tags

There are several ways to add tags: 1. inline tags - just add them into test or suite title (ex @simple, @tag("info"))

it('test with tags @simple @tag("withInfo")', function () { 
   // ...
});
  1. cypress configuration object:
    it('test with tags', { tags: ['@abc'] }, function () { 
       // ...
    });
  2. cypress configuration object may also have a string type and also parsed tag type:
    it('test with tags', { tags: '@abc' }, function () {
       // ...
    });
    it('test with tags', { tags: [{ tag: '@abc', info: ['my info'] }] }, function () {
       // ...
    });

Using tags

When tags are added to a test you can use them within hooks. This may be helpful when you want to do some action depending on tags:

Example (will skip tests with @skip tag):

// my.test.ts
it('test to skip @skip', function () {
   // ...
});

// e2e.ts / setup.ts
beforeEach(function() {
  const test = this.currentTest;
  if(test){
    if(test.tags?.map(t => t.tag).includes('@skip')){
      this.skip();
    }
  }
})

Env

To see tags in test / suite title set env variable cyTagsShowTagsInTitle to true

If you want to keep titles as they are set variable to undefined

  • todo: when var is true show only own tags
1.0.15

6 months ago

1.0.15-alpha.0

6 months ago

1.0.14

6 months ago

1.0.13

6 months ago

1.0.12

6 months ago

1.0.11

6 months ago

1.0.10

6 months ago

1.0.9

6 months ago

1.0.8

6 months ago

1.0.8-alpha.0

6 months ago

1.0.7

6 months ago

1.0.6

6 months ago

1.0.5

6 months ago

1.0.4

6 months ago

1.0.3

6 months ago

1.0.3-alpha.0

6 months ago

1.0.3-alpha

6 months ago

1.0.2

6 months ago

1.0.1

6 months ago