選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. });