Chatwoot/app/javascript/dashboard/App.Vue.spec.js
2019-10-16 14:36:17 +05:30

11 lines
219 B
JavaScript

import App from './App';
import '../../test-matchers';
describe(`App component`, () => {
it(`should be a component`, () => {
// Arrange
// Act
expect(App).toBeVueComponent('App');
// Assert
});
});