File: index.html

package info (click to toggle)
node-cross-fetch 3.1.5%2Bds.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 492 kB
  • sloc: javascript: 955; makefile: 46; sh: 15
file content (35 lines) | stat: -rw-r--r-- 840 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>

<head>
  <meta charset="utf-8">
  <!--
    Although this file is for headless tests, it can be used as a local file in GUI browsers.
    That's why we include the css below.
  -->
  <link href="../../../node_modules/mocha/mocha.css" rel="stylesheet" />
</head>

<body>
  <div id="mocha"></div>

  <script src="../../../node_modules/chai/chai.js"></script>
  <script src="../../../node_modules/mocha/mocha.js"></script>

  <script src="../../setup.env.js"></script>
  <script src="../api.spec.js"></script>
  <script src="../../module-system/module.spec.js"></script>
  <script src="../../../dist/cross-fetch.js"></script>

  <script>
    describe('Browser:Fetch:Whatwg', () => {
      addFetchSuite();
      addPolyfillSuite({ fetch });
    });

    mocha.checkLeaks();
    mocha.run();
  </script>
</body>

</html>