Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
file system assertions for chai
npm install --save-dev chai-files
After importing chai
add the following code to use chai-files
assertions:
var chai = require('chai');
var chaiFiles = require('chai-files');
chai.use(chaiFiles);
var expect = chai.expect;
var file = chaiFiles.file;
var dir = chaiFiles.dir;
Check if a file or directory exist:
expect(file('index.js')).to.exist;
expect(file('index.coffee')).to.not.exist;
expect(dir('foo')).to.exist;
expect(dir('missing')).to.not.exist;
Check if the file content equals a string:
expect(file('foo.txt')).to.equal('foo');
expect(file('foo.txt')).to.not.equal('bar');
expect('foo').to.equal(file('foo.txt'));
expect('foo').to.not.equal(file('foo.txt'));
Check if the file equals another file:
expect(file('foo.txt')).to.equal(file('foo-copy.txt'));
expect(file('foo.txt')).to.not.equal(file('bar.txt'));
Check if a file or directory is empty:
expect(file('empty.txt')).to.be.empty;
expect(file('foo.txt')).to.not.be.empty;
expect(dir('empty')).to.be.empty;
expect(dir('foo')).to.not.be.empty;
Check if a file contains a string:
expect(file('foo.txt')).to.contain('foo');
expect(file('foo.txt')).to.not.contain('bar');
Check if a file matches a regular expression:
expect(file('foo.txt')).to.match(/fo+/);
expect(file('foo.txt')).to.not.match(/bar?/);
chai-files is licensed under the MIT License.
v1.4.0
expect(...).to.exist
FAQs
file system assertions for chai
The npm package chai-files receives a total of 61,415 weekly downloads. As such, chai-files popularity was classified as popular.
We found that chai-files demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.