mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 02:28:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			857 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			857 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /**
 | |
|  * Copyright (c) HashiCorp, Inc.
 | |
|  * SPDX-License-Identifier: BUSL-1.1
 | |
|  */
 | |
| 
 | |
| import { module, test } from 'qunit';
 | |
| import { setupRenderingTest } from 'ember-qunit';
 | |
| import { render } from '@ember/test-helpers';
 | |
| import hbs from 'htmlbars-inline-precompile';
 | |
| 
 | |
| module('Integration | Component | transform-edit-base', function (hooks) {
 | |
|   setupRenderingTest(hooks);
 | |
| 
 | |
|   test('it renders', async function (assert) {
 | |
|     // Set any properties with this.set('myProperty', 'value');
 | |
|     // Handle any actions with this.set('myAction', function(val) { ... });
 | |
| 
 | |
|     await render(hbs`{{transform-edit-base}}`);
 | |
| 
 | |
|     assert.dom(this.element).hasText('');
 | |
| 
 | |
|     // Template block usage:
 | |
|     await render(hbs`
 | |
|       <TransformEditBase>
 | |
|         template block text
 | |
|       </TransformEditBase>
 | |
|     `);
 | |
| 
 | |
|     assert.dom(this.element).hasText('template block text');
 | |
|   });
 | |
| });
 | 
