npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

cypress-mongo-wrapper

v1.0.0

Published

A custom npm package that provides a seamless integration between Cypress and MongoDB for testing applications

Readme

Cypress MongoDB Wrapper

A seamless integration between Cypress and MongoDB for end-to-end testing. This package provides easy-to-use Cypress commands for interacting with MongoDB during your tests.

Installation

npm install cypress-mongo-wrapper --save-dev

Setup

  1. Add the following to your cypress/support/e2e.js:
require('cypress-mongo-wrapper');
  1. Update your cypress.config.js to include MongoDB configuration:
const { defineConfig } = require('cypress');
const { MongoClient } = require('mongodb');

let mongoClient = null;

module.exports = defineConfig({
  e2e: {
    setupNodeEvents(on, config) {
      on('task', {
        async connectDB({ uri }) {
          try {
            mongoClient = new MongoClient(uri);
            await mongoClient.connect();
            return null;
          } catch (error) {
            throw new Error(`MongoDB Connection Error: ${error.message}`);
          }
        },
        async disconnectDB() {
          if (mongoClient) {
            await mongoClient.close();
            mongoClient = null;
          }
          return null;
        },
        async insertDocument({ dbName, collectionName, document }) {
          if (!mongoClient) throw new Error('MongoDB is not connected');
          const db = mongoClient.db(dbName);
          const collection = db.collection(collectionName);
          return await collection.insertOne(document);
        },
        async findDocuments({ dbName, collectionName, query }) {
          if (!mongoClient) throw new Error('MongoDB is not connected');
          const db = mongoClient.db(dbName);
          const collection = db.collection(collectionName);
          return await collection.find(query).toArray();
        },
        async updateDocuments({ dbName, collectionName, filter, update }) {
          if (!mongoClient) throw new Error('MongoDB is not connected');
          const db = mongoClient.db(dbName);
          const collection = db.collection(collectionName);
          return await collection.updateMany(filter, update);
        },
        async deleteDocuments({ dbName, collectionName, filter }) {
          if (!mongoClient) throw new Error('MongoDB is not connected');
          const db = mongoClient.db(dbName);
          const collection = db.collection(collectionName);
          return await collection.deleteMany(filter);
        }
      });
    }
  }
});
  1. Create a cypress.env.json file with your MongoDB connection string:
{
  "mongoUri": "your_mongodb_connection_string"
}

Note: Add cypress.env.json to your .gitignore to keep sensitive information secure.

Usage

The package provides the following Cypress commands:

Connect to MongoDB

cy.connectToMongoDB(Cypress.env('mongoUri'));

Disconnect from MongoDB

cy.disconnectFromMongoDB();

Insert Document

cy.insertToMongoDB('dbName', 'collectionName', { name: 'test', value: 123 })
  .then((result) => {
    expect(result.insertedId).to.exist;
  });

Find Documents

cy.findInMongoDB('dbName', 'collectionName', { name: 'test' })
  .then((docs) => {
    expect(docs).to.have.length(1);
  });

Update Documents

cy.updateInMongoDB(
  'dbName',
  'collectionName',
  { name: 'test' },
  { $set: { value: 456 } }
).then((result) => {
  expect(result.modifiedCount).to.equal(1);
});

Delete Documents

cy.deleteInMongoDB('dbName', 'collectionName', { name: 'test' })
  .then((result) => {
    expect(result.deletedCount).to.equal(1);
  });

Example Test

describe('MongoDB Integration Test', () => {
  before(() => {
    cy.connectToMongoDB(Cypress.env('mongoUri'));
  });

  after(() => {
    cy.disconnectFromMongoDB();
  });

  it('should perform CRUD operations', () => {
    const testDoc = { name: 'test', value: 123 };
    
    // Insert
    cy.insertToMongoDB('testDB', 'testCollection', testDoc)
      .then((result) => {
        expect(result.insertedId).to.exist;
      });

    // Find
    cy.findInMongoDB('testDB', 'testCollection', { name: 'test' })
      .then((docs) => {
        expect(docs).to.have.length(1);
        expect(docs[0].value).to.equal(123);
      });

    // Update
    cy.updateInMongoDB(
      'testDB',
      'testCollection',
      { name: 'test' },
      { $set: { value: 456 } }
    ).then((result) => {
      expect(result.modifiedCount).to.equal(1);
    });

    // Delete
    cy.deleteInMongoDB('testDB', 'testCollection', { name: 'test' })
      .then((result) => {
        expect(result.deletedCount).to.equal(1);
      });
  });
});

License

MIT

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.