Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@mmisty/cypress-tags

Package Overview
Dependencies
Maintainers
0
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mmisty/cypress-tags

Parses tags from test/suite title or/and from cypress configuration object into test .tags object

  • 1.0.17
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

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 () { 
   // ...
});
  1. 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

Keywords

FAQs

Package last updated on 05 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc