12 lines
		
	
	
		
			289 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			289 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { expect, tap } from '@pushrocks/tapbundle';
 | |
| import * as smarturl from '../ts/index';
 | |
| 
 | |
| let testSmarturl: smarturl.Smarturl;
 | |
| 
 | |
| tap.test('first test', async () => {
 | |
|   testSmarturl = new smarturl.Smarturl();
 | |
|   expect(testSmarturl).to.be.instanceOf(smarturl.Smarturl);
 | |
| });
 | |
| 
 | |
| tap.start();
 |