Skip to content

Commit 6e75be0

Browse files
committed
fix(demo): add Ignore annotation to avoid validating them in addonsdemo
1 parent 23973be commit 6e75be0

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/test/java/com/flowingcode/addons/applayout/ApplayoutDemoView.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@
1919
*/
2020
package com.flowingcode.addons.applayout;
2121

22-
import java.io.BufferedReader;
23-
import java.io.InputStream;
24-
import java.io.InputStreamReader;
25-
import java.util.stream.Collectors;
2622
import com.flowingcode.addons.applayout.MouseClickEvent.MouseButton;
2723
import com.flowingcode.addons.applayout.menu.PaperCard;
2824
import com.flowingcode.addons.applayout.menu.PaperToggle;
@@ -43,11 +39,16 @@
4339
import com.vaadin.flow.component.orderedlayout.VerticalLayout;
4440
import com.vaadin.flow.data.binder.Binder;
4541
import com.vaadin.flow.router.Route;
42+
import java.io.BufferedReader;
43+
import java.io.InputStream;
44+
import java.io.InputStreamReader;
45+
import java.util.stream.Collectors;
4646
import org.junit.Ignore;
4747

4848
@SuppressWarnings("serial")
4949
@Route(value = "applayout-full", layout = DemoLayout.class)
5050
@StyleSheet("context://frontend/styles/app-layout/demo-styles.css")
51+
@Ignore
5152
public class ApplayoutDemoView extends VerticalLayout {
5253

5354
private VerticalLayout container = new VerticalLayout();

src/test/java/com/flowingcode/addons/applayout/SampleView.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626

2727
@SuppressWarnings("serial")
2828
@Route(value = "view", layout = CustomAppLayout.class)
29+
@Ignore
2930
public class SampleView extends Div {
3031

3132
{

0 commit comments

Comments
 (0)