
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
jest-file-matcher
Advanced tools
A simple, Typescript ready, jest matcher extension to validate files.
Enable usage of the matcher in jest:
export default {
/** Just add this project on your jest setup */
setupFilesAfterEnv: ['jest-file-matcher'],
};
Import the matcher to typescript with:
{
"compilerOptions": {
"typeRoots": ["./node_modules/jest-file-matcher"]
}
}
describe('Example of test', () => {
it('Test #1', async () => {
await expect(new File([], 'example.tsx', { lastModified: 1 }))
/** You can ignore some fields of the File as needed */
.toBeFile(new File([], 'example.tsx', { lastModified: 0 }), { omit: ['lastModified'] });
await expect(new File(['I am the content'], 'example.txt', { lastModified: 0 }))
/** You can read the content of the file as you want */
.toBeFile(new File(['I am the content'], 'example.txt', { lastModified: 0 }), { content: 'readAsDataURL' });
await expect(new File(['I am the content'], 'example.txt', { lastModified: 0 }))
/** Or ignore it all together*/
.toBeFile(new File(['I am the content'], 'example.txt', { lastModified: 0 }), { content: false });
await expect(new File(['I am the content'], 'example.txt', { lastModified: 0 }))
/** And make sure that they don't match too*/
.not.toBeFile(new File(["I'm not it however"], 'example.txt', { lastModified: 0 }));
/**
* See other cases on the typescript definition file!
**/
/**
* Lastly, the code below will always fail with the warning:
* The expected file is the same as the received, replace "toBeFile" with "toBe"
*/
const file = new File(['I am the content'], 'example.txt', { lastModified: 0 });
await expect(file).toBeFile(file);
});
});
MIT
FAQs
A simple jest matcher extension to validate files
The npm package jest-file-matcher receives a total of 187 weekly downloads. As such, jest-file-matcher popularity was classified as not popular.
We found that jest-file-matcher 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
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.