0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-11 02:12:21 -05:00

Fixed IDE derp with requring assert

- I don't know how this happened or why it worked locally :woman-shrugging::skin-tone-2:
- seems like my IDE did a fart and I didn't notice.
This commit is contained in:
Hannah Wolfe 2022-02-07 19:43:33 +00:00
parent 1852521fca
commit e6cddeca72
No known key found for this signature in database
GPG key ID: AB586C3B5AE5C037

View file

@ -1,6 +1,6 @@
const errors = require('@tryghost/errors');
const sinon = require('sinon');
const assert = require('node:assert');
const assert = require('assert');
let mocks = {};
let emailCount = 0;