mirror of
				https://gitee.com/vant-contrib/vant.git
				synced 2025-10-31 11:32:09 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			333 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			333 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import NoticeBar from '..';
 | |
| import { mount } from '../../../test/utils';
 | |
| 
 | |
| test('close event', () => {
 | |
|   const wrapper = mount(NoticeBar, {
 | |
|     propsData: {
 | |
|       mode: 'closeable'
 | |
|     }
 | |
|   });
 | |
|   const close = wrapper.find('.van-notice-bar__right-icon');
 | |
| 
 | |
|   close.trigger('click');
 | |
|   expect(wrapper.emitted('close')).toBeTruthy();
 | |
| });
 |