Code Monkey home page Code Monkey logo

send-test-info's Introduction

send-test-info

Attach unit test information to exceptions sent by Raven to Sentry

NPM

Build status semantic-release js-standard-style

Read Connecting crash reporting with end to end tests

Install

Add this module to any project that uses Cypress for end to end testing and Raven.js client to send exceptions to Sentry.

npm install --save-dev send-test-info

Use

From any spec file, require and call a single function with the spec's filename.

const sendTestInfo = require('send-test-info')
// filename is optional
sendTestInfo({spec: __filename})

describe('Test page', function () {
  // unit tests
})

See example spec file cypress/integration/send-test-info-spec.js and the test page cypress/index.html

Result

Each exception captured by Raven and sent to Sentry will include the spec filename and the full test title.

images/sending-error.png

Errors generated during end to end tests can be quickly triaged and recreated by just looking at the exception tags

images/sentry-view.png

API options

You can pass multiple options that control how many times it will search for Raven and add context. See cypress/integration/send-test-info-spec.js as an example.

sendTestInfo({
  spec: __filename,     // the name of the spec file
  maxCheckTimes: 10,    // how many times we should try finding Raven
  maxRavenInstalls: 1,  // how many times should we find Raven
                        // and keep looking again. Good if there are new pages
                        // loaded and Raven is installed again
  interval: 1000,       // interval (ms) between checks for Raven
  debug: true,          // print log messages to the console
  immediate: false,     // start searching for Raven immediately without
                        // using "beforeEach" callback. Good for setting up
                        // inside a Cypress command (like "login")
  breadcrumbs: false    // record Cypress commands as breadcrumbs (see below)
})

Cypress breadcrumbs

This module also subscribes to Cypress events using Cypress.on(...) syntax and adds the information to the Raven breadcrumbs. As the result, the exception will have very useful list of logical steps taken by the test before the crash.

Cypress breadcrumbs

Small print

Author: Gleb Bahmutov <[email protected]> © 2016

License: MIT - do anything with the code, but don't blame me if it does not work.

Support: if you find any problems with this module, email / tweet / open issue on Github

MIT License

Copyright (c) 2016 Gleb Bahmutov <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.