cloudworker-proxy
Version:
An api gateway for cloudflare workers
18 lines (14 loc) • 467 B
JavaScript
const { expect } = require('chai');
const basicAuthFactory = require('../../src/handlers/basic-auth');
const helpers = require('../helpers');
describe('basicAuth', () => {
it('should return a 401 if the basic auth headers are not available', async () => {
const handler = basicAuthFactory({
users: [],
});
const ctx = helpers.getCtx();
ctx.request.path = '/test';
await handler(ctx, []);
expect(ctx.status).to.equal(401);
});
});