mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 10:37:56 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			615 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			615 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /**
 | |
|  * Copyright (c) HashiCorp, Inc.
 | |
|  * SPDX-License-Identifier: BUSL-1.1
 | |
|  */
 | |
| 
 | |
| import { module, skip } from 'qunit';
 | |
| import { setupRenderingTest } from 'ember-qunit';
 | |
| import { render } from '@ember/test-helpers';
 | |
| import hbs from 'htmlbars-inline-precompile';
 | |
| 
 | |
| module('Integration | Component | transform-role-edit', function (hooks) {
 | |
|   setupRenderingTest(hooks);
 | |
| 
 | |
|   skip('it renders', async function (assert) {
 | |
|     // TODO: Fill out these tests, merging without to unblock other work
 | |
|     await render(hbs`
 | |
|       <TransformRoleEdit />
 | |
|     `);
 | |
| 
 | |
|     assert.dom(this.element).hasText('template block text');
 | |
|   });
 | |
| });
 | 
