|
@@ -0,0 +1,14 @@
|
|
|
+
|
|
|
+import { mount } from 'cypress/angular';
|
|
|
+import { EditRatioStarComponent } from '../edit-ratio-star.component';
|
|
|
+
|
|
|
+
|
|
|
+describe('Edit-Ratio-Star', () => {
|
|
|
+ it('should render the initial count', () => {
|
|
|
+ mount(EditRatioStarComponent);
|
|
|
+ cy.get('.list ion-icon').eq(0).click({force:true});
|
|
|
+
|
|
|
+ });
|
|
|
+
|
|
|
+
|
|
|
+ });
|