37 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
<!DOCTYPE html>
 | 
						|
 | 
						|
<head>
 | 
						|
  <title>Business</title>
 | 
						|
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | 
						|
  <link rel="stylesheet" href="https://unpkg.com/mocha/mocha.css" />
 | 
						|
  <link type="text/css" rel="stylesheet" href="../index.css" />
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
  <h2><a href="../">DGF Tests</a></h2>
 | 
						|
  <div id="mocha"></div>
 | 
						|
  <div id="scene"></div>
 | 
						|
</body>
 | 
						|
<script src="https://cdnjs.cloudflare.com/ajax/libs/radash/10.7.0/radash.js"
 | 
						|
  integrity="sha512-S207zKWG3iqXqe6msO7/Mr8X3DzzF4u8meFlokHjGtBPTGUhgzVo0lpcqEy0GoiMUdcoct+H+SqzoLsxXbynzg=="
 | 
						|
  crossorigin="anonymous" referrerpolicy="no-referrer"></script>
 | 
						|
<script src="https://cdnjs.cloudflare.com/ajax/libs/mocha/10.2.0/mocha.min.js"
 | 
						|
  integrity="sha512-jsP/sG70bnt0xNVJt+k9NxQqGYvRrLzWhI+46SSf7oNJeCwdzZlBvoyrAN0zhtVyolGcHNh/9fEgZppG2pH+eA=="
 | 
						|
  crossorigin="anonymous" referrerpolicy="no-referrer"></script>
 | 
						|
<script src="https://cdnjs.cloudflare.com/ajax/libs/chai/4.3.7/chai.min.js"
 | 
						|
  integrity="sha512-tfLUmTr4u39/6Pykb8v/LjLaQ9u/uSgbHtZXFCtT9bOsZd1ZPZabIrwhif/YzashftTOhwwQUC0cQyrnIC1vEQ=="
 | 
						|
  crossorigin="anonymous" referrerpolicy="no-referrer"></script>
 | 
						|
<script type="module" src="./scripts/business.test.js"></script>
 | 
						|
<script defer class="mocha-init">
 | 
						|
  mocha.setup({
 | 
						|
    ui: 'bdd',
 | 
						|
    globals: ['scene', 'dao', 'experts', 'posts', '__REACT_DEVTOOLS_*'],
 | 
						|
  });
 | 
						|
  mocha.checkLeaks();
 | 
						|
  window.should = chai.should();
 | 
						|
</script>
 | 
						|
<script defer class="mocha-exec">
 | 
						|
  // TODO: Weird race condition -- resolve this in a better way
 | 
						|
  setTimeout(() => mocha.run(), 1000);
 | 
						|
</script>
 |