Socket
Book a DemoInstallSign in
Socket

@ra-bootcamp/mocha

Package Overview
Dependencies
Maintainers
2
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ra-bootcamp/mocha

A mocha.js and chai wrapper that delivers a promise-based API to get test results instead of only printing.

latest
Source
npmnpm
Version
1.3.0
Version published
Maintainers
2
Created
Source

mocha-as-promised

A mocha.js and chai wrapper that delivers a promise-based API to get test results instead of only printing. Created for Responde Aí's Bootcamp students use on their own Code LMS platform project. It also prevents infinite loops.

This library is UNSAFE as it uses eval to load the code and the test code (check out Usage to understand why).

Usage

Install the package:

npm install @ra-bootcamp/mocha
# or if using yarn
yarn add @ra-bootcamp/mocha

This module exports a single function:

  • runTests:
    • receives two strings: the code being tested and the test code
    • receive optional function callback to get outputs "consoles"
    • returns a promise that resolves to the test results or rejects if a test takes more than 1.5s to run
import { runTests } from '@ra-bootcamp/mocha';

async function main() {
  const code = `
    /* This function will pass the first test but not the second */
    function testedFunction (param) {
      return 10;
    }
  `;

  const testCode = `
    describe('testedFunction', () => {
      it('should return the passed parameter (10)', () => {
        const param = 10;

        const result = testedFunction(param);

        expect(result).to.equal(param);
      });
      
      it('should return the passed parameter (20)', () => {
        const param = 20;

        const result = testedFunction(param);

        expect(result).to.equal(param);
      });
    });
  `;

  const callbackConsole = (value) => {
    // write our function to save outputs
  };

  const result = await runTests(code, testCode, callbackConsole);

  /*
   * Will return an object with the following format:
   * {
   *   failed: 1
   *   passed: 1,
   *   suites: [
   *     [
   *       {
   *         type: 'test',
   *         title: 'should return the passed parameter (10)',
   *         state: 'passed',
   *       },
   *       {
   *         type: 'test',
   *         title: 'should return the passed parameter (20)',
   *         state: 'failed',
   *         error: {
   *           actual: 10,
   *           expected: 20,
   *           message: 'expected 10 to equal 20',
   *           operator: 'strictEqual',
   *           stack: <Error Stack Trace>
   *         }
   *       }
   *     ]
   *   ]
   * }
   *
   * May reject if code takes more than 1.5s to run.
   */
}

FAQs

Package last updated on 24 May 2021

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.