UNPKG

@fastify/swagger-ui

Version:
19 lines (14 loc) 513 B
'use strict' const { test } = require('node:test') const Fastify = require('fastify') const fastifySwagger = require('@fastify/swagger') const fastifySwaggerUi = require('../index') test('fastify.swaggerCSP should exist', async (t) => { t.plan(3) const fastify = Fastify() await fastify.register(fastifySwagger) await fastify.register(fastifySwaggerUi) t.assert.ok(fastify.swaggerCSP) t.assert.ok(Array.isArray(fastify.swaggerCSP.script)) t.assert.ok(Array.isArray(fastify.swaggerCSP.style)) })