Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
ts-smtp-test
Advanced tools
SMTP server for integration tests.
Uses https://nodemailer.com/ as SMTP-Server.
const server = new SmtpTestServer();
before(async () => {
await server.start();
});
beforeEach(() => {
server.clear();
});
after(async () => {
await server.shutdown();
});
it("can receive mail", async () => {
await sendMail(server.config, {
attachments: [{content: "text attachment"}],
from: "me@me.de",
html: "some html",
subject: "hi",
text: "some text",
to: "to@me.de",
});
expect(server.messages).length(1);
const mail = server.messages[0];
expect(mail.from).to.eq("me@me.de");
expect(mail.to).to.eq("to@me.de");
expect(mail.subject).to.eq("hi");
expect(mail.textContent).to.eq("some text");
expect(mail.htmlContent).to.eq("some html");
expect(mail.attachments).length(1);
});
it("can wait for mails", async () => {
setTimeout(() =>
sendMail(server.config, {
text: "1",
to: "to@me.de",
},
).catch(console.error), 5);
setTimeout(() =>
sendMail(server.config, {
text: "2",
to: "to@me.de",
},
).catch(console.error), 10);
// wait for 2 messages with a timeout of 15 millis
const messages = await server.waitForMessages(2, 15);
expect(messages).length(2);
expect(messages[0].textContent).to.contain("1");
expect(messages[1].textContent).to.contain("2");
});
FAQs
smtp server for integration testing
We found that ts-smtp-test 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
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.