Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

es-bundle.js 281 B

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