
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
@ra-bootcamp/mocha
Advanced tools
A mocha.js and chai wrapper that delivers a promise-based API to get test results instead of only printing.
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).
Install the package:
npm install @ra-bootcamp/mocha
# or if using yarn
yarn add @ra-bootcamp/mocha
This module exports a single function:
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
A mocha.js and chai wrapper that delivers a promise-based API to get test results instead of only printing.
We found that @ra-bootcamp/mocha demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.