mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-03 20:17:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import { module, test, skip } from 'qunit';
 | 
						|
import { setupRenderingTest } from 'ember-qunit';
 | 
						|
import { render } from '@ember/test-helpers';
 | 
						|
import { create } from 'ember-cli-page-object';
 | 
						|
import hbs from 'htmlbars-inline-precompile';
 | 
						|
import copyButton from 'vault/tests/pages/components/hover-copy-button';
 | 
						|
const component = create(copyButton);
 | 
						|
 | 
						|
module('Integration | Component | hover copy button', function(hooks) {
 | 
						|
  setupRenderingTest(hooks);
 | 
						|
 | 
						|
  hooks.beforeEach(function() {
 | 
						|
    component.setContext(this);
 | 
						|
  });
 | 
						|
 | 
						|
  hooks.afterEach(function() {
 | 
						|
    component.removeContext();
 | 
						|
  });
 | 
						|
 | 
						|
  // ember-cli-clipboard helpers don't like the new style
 | 
						|
  skip('it shows success message in tooltip', async function(assert) {
 | 
						|
    this.set('copyValue', 'foo');
 | 
						|
    await render(
 | 
						|
      hbs`<div class="has-copy-button" tabindex="-1">
 | 
						|
      <HoverCopyButton @copyValue={{copyValue}} />
 | 
						|
      </div>`
 | 
						|
    );
 | 
						|
 | 
						|
    await component.focusContainer();
 | 
						|
    assert.ok(component.buttonIsVisible);
 | 
						|
    await component.mouseEnter();
 | 
						|
    assert.equal(component.tooltipText, 'Copy', 'shows copy');
 | 
						|
    await component.click();
 | 
						|
    assert.equal(component.tooltipText, 'Copied!', 'shows success message');
 | 
						|
  });
 | 
						|
 | 
						|
  test('it has the correct class when alwaysShow is true', async function(assert) {
 | 
						|
    this.set('copyValue', 'foo');
 | 
						|
    await render(hbs`{{hover-copy-button alwaysShow=true copyValue=copyValue}}`);
 | 
						|
    assert.ok(component.buttonIsVisible);
 | 
						|
    assert.ok(component.wrapperClass.includes('hover-copy-button-static'));
 | 
						|
  });
 | 
						|
});
 |