unpkg/modules/__tests__/_publicKey-test.js

22 lines
452 B
JavaScript

import request from 'supertest';
import createServer from '../createServer';
describe('The /_publicKey endpoint', () => {
let server;
beforeEach(() => {
server = createServer();
});
describe('GET /_publicKey', () => {
it('echoes the public key', done => {
request(server)
.get('/_publicKey')
.end((err, res) => {
expect(res.text).toMatch(/PUBLIC KEY/);
done();
});
});
});
});