mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-30 18:17:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			823 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			823 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 | form-error', 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`{{form-error}}`);
 | |
| 
 | |
|     assert.dom(this.element).hasText('');
 | |
| 
 | |
|     // Template block usage:
 | |
|     await render(hbs`
 | |
|       <FormError>
 | |
|         template block text
 | |
|       </FormError>
 | |
|     `);
 | |
| 
 | |
|     assert.dom(this.element).hasText('template block text');
 | |
|   });
 | |
| });
 | 
