GitXplorerGitXplorer
L

vue-cli-plugin-test-attrs

public
64 stars
9 forks
30 issues

Commits

List of commits on branch develop.
Unverified
58dcf8113b3579d3ba686f3597f751082dd8e72e

v0.1.5

LLinusBorg committed 5 years ago
Verified
493bc200feb9f11200e8e4ccc4cafc9cb3975346

Support data binding for attributes (#22)

TTarabass committed 5 years ago
Verified
a3b19033ab0f8ae841dbbccaec817b371abd08f9

chore(deps): bump lodash from 4.17.11 to 4.17.15 (#23)

ddependabot[bot] committed 5 years ago
Verified
bc6e01573f0014179228dfeaf3027de05e609456

chore(deps): bump handlebars from 4.0.12 to 4.5.3 (#20)

ddependabot[bot] committed 5 years ago
Verified
4dce58db86daf80fd4102b0a7b9c82b6b123d75f

chore(deps): bump mixin-deep from 1.3.1 to 1.3.2 (#19)

ddependabot[bot] committed 5 years ago
Verified
ce4dfb652d31d6bf9be4bd5100e1d4d15b9f7f47

chore(deps): bump lodash.merge from 4.6.1 to 4.6.2 (#17)

ddependabot[bot] committed 5 years ago

README

The README file for this repository.

vue-cli-plugin-test-attrs

A plugin for vue-cli that adds a compiler module to vue-loader that can remove predefined data attributes from your SFC templates at build time

Why

When testing your component, you frequently need to select some dom element to check if it is present, has the right properties and so forth.

Using classes and ids for this is not a good idea, as explained in this excellent blog post by the great Kent C. Dodds. While written with React in mind, the same problems apply to Vue components.

The proposed solution: Use data attributes instead, which are not linked to your styles and don't pollute your csss class namespace.

But we don't want these properties to make it into our production code, right? Besides looking amateurish it will increase the size of our render functions.

In React, this can be solved with a babel plugin, but in Vue, we compile our .vue files with webpack & vue-loader. But we can solve this challenge with a compiler module for vue-loader.

This vue-cli-plugin adds such a compiler module to vue-cli's webpack config and exposes a few configuration options in vue.config.js for your convenience.

Installation

This library requires @vue/cli >=3

with @vue/cli:

vue add test-attrs

or manually:

npm install -D vue-cli-plugin-test-attrs

yarn add -D vue-cli-plugin-test-attrs

Usage

by default, this plugin adds the compiler module to vue-loader's config, so the data-test attributes will be removed and not end up in the bundle that you serve.

It does not add the compiler module (and consequently, it keeps the data- attributes) when:

  • process.env.NODE_ENV === 'test' or
  • !!process.env.VUE_CLI_KEEP_TEST_ATTRS

This means:

  1. For vue-cli-service serve and vue-cli-service build commands, the test attributes will be removed by the compiler module.

  2. For unit tests with jest or mocha (vue-cli-service test:unit), the data-test attributes will be present because NODE_ENV ==== 'test' (and in the case of jest, vue-loader isn'T used at all anyway)

  3. For other environments (e.g. e2e tests), you can use the VUE_CLI_KEEP_TEST_ATTRS environment variable to skip adding the compiler module so data-test attributes are persisted.

Options

the plugin's options can be configured in vue.config.js:

// vue.config.js
module.exports = {
  pluginOptions: {
    testAttrs: {
      // you can enable and disable it yourself,
      // i.e. with an environment variable:
      enabled: process.env.MY_COOL_ENV,
      // you can also define which `data-` attributes should
      // should be removed.
      attrs: ['test'], // default: removes `data-test="..."`
    },
  },
}

Jest

As explained above, the plugin should work out of the box

Mocha

As explained above, the plugin should work out of the box

Cypress

E2E tests with Cypress usually run in 'production' mode, so by default this plugin would remove all data-test atributes. To keep them in your code for your e2e tests, you can set the VUE_CLI_KEEP_TEST_ATTRS environment variable:

"test:e2e": "VUE_CLI_KEEP_TEST_ATTRS=true vue-cli-service test:e2e"

However, I would personally suggest to use a custom environment:

# .env.e2e
NODE_ENV=production
VUE_CLI_KEEP_TEST_ATTRS=true
"test:e2e": "vue-cli-service test:e2e --mode e2e"

Nichtwatch

I haven't tested this plugin with nightwatch yet, so if you can contribute instructions, please go ahead and open a PR.

Rollup

to follow.