No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

9 líneas
275 B

  1. import { describe, expect, test } from '@jest/globals';
  2. import SwaggerUI from '../../dist/swagger-ui-bundle';
  3. describe('webpack browser umd build', () => {
  4. test('should export a function for (umd) bundle', () => {
  5. expect(SwaggerUI).toBeInstanceOf(Function);
  6. });
  7. });