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

stripe-playback

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stripe-playback

Wrapper around `stripe playback` command for VCR-style testing of Stripe integrations in node

  • 1.0.0
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

stripe-playback

NPM module to make it easy to use stripe playback with jest tests.

Example usage:

const { initializeYourApp } = require('./yourApp.js')
const { auto } = require('stripe-playback')

describe("test suite", () =>
  const { playback, clientConfig } = auto();
  beforeAll(() => {
    const stripe = require("stripe")(
      process.env.STRIPE_SECRET_KEY,
      clientConfig
    );

    const expressApp = initializeYourApp(stripe, env);
    app = supertest(expressApp);
  });

  playback(it)("your test case", () => {
    return app
      .post("/your-endpoint-that-hits-stripe")
      .send({
        paymentMethod: "pm_card_authenticationRequiredOnSetup",
      })
      .expect(200)
      .expect((req) => {
        expect(req.body.paymentMethod).toBeTruthy();
      });
  });

Start stripe playback server

cd /path/to/your/app
stripe playback

Run tests once to record, then on subsequent runs, the recordings will be used.

FAQs

Package last updated on 20 Jul 2020

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