import { test, expect, describe } from "bun:test"; import { bunRun } from "harness"; import path from "path"; const it = process.env.SMTP_SENDGRID_KEY && process.env.SMTP_SENDGRID_SENDER ? test : test.skip; describe("nodemailer", () => { it("basic smtp", async () => { try { const info = bunRun(path.join(import.meta.dir, "process-nodemailer-fixture.js"), { SMTP_SENDGRID_SENDER: process.env.SMTP_SENDGRID_SENDER as string, SMTP_SENDGRID_KEY: process.env.SMTP_SENDGRID_KEY as string, }); expect(info.stdout).toBe("true"); expect(info.stderr || "").toBe(""); } catch (err: any) { expect(err?.message || err).toBe(""); } }, 10000); }); m-in'>c-m-in Unnamed repository; edit this file 'description' to name the repository.
aboutsummaryrefslogtreecommitdiff
path: root/cortex-m-rt/examples/unsafe-default-handler.rs (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2023-11-24CI: remove node16 dependency for self-hosted runnerGravatar Alex Martens 1-1/+3
2023-11-19Rename `__reset_vector` to `__exceptions`Gravatar James Munns 1-4/+9
Closes #495
2023-11-04c-m-rt: mark Vector as repr(C)Gravatar Adam Greig 3-0/+3
2023-11-04cortex-m: update to volatile-register 0.2.2, fixes #485Gravatar Adam Greig 1-1/+1
2023-10-29semihosting: silence clippy::result_unit_err in hioGravatar Alex Martens 1-0/+3
2023-10-29semihosting: add Safety docstring to syscallGravatar Alex Martens 1-0/+11
2023-10-29Fix new clippy lintsGravatar Alex Martens 3-22/+14
2023-10-29CI: actions-rs/toolchain -> dtolnay/rust-toolchainGravatar Alex Martens 6-39/+11
2023-10-16Move cortex-m crate into cortex-m directoryGravatar Adam Greig 55-307/+113
2023-10-13actions/checkout: 3 -> 4Gravatar Alex Martens 6-11/+11
This is the same thing but updated from nodejs 16 to 20.
2023-08-16Add to docsGravatar Dion Dokter 1-9/+23