chore(ci): suppress warnings about unused code in example tests (#3193)

This commit is contained in:
Greg Johnston 2024-11-04 13:08:50 -05:00 committed by GitHub
parent d9f52dad76
commit 4a8cfad7c5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 10 additions and 0 deletions

View file

@ -1,3 +1,5 @@
#![allow(dead_code)]
use counter::*;
use leptos::mount::mount_to;
use leptos::prelude::*;

View file

@ -1,3 +1,5 @@
#![allow(dead_code)]
use counter_without_macros::counter;
use leptos::{prelude::*, task::tick};
use pretty_assertions::assert_eq;

View file

@ -1,3 +1,5 @@
#![allow(dead_code)]
use wasm_bindgen::JsCast;
use wasm_bindgen_test::*;

View file

@ -1,3 +1,5 @@
#![allow(dead_code)]
use directives::App;
use leptos::{prelude::*, task::tick};
use wasm_bindgen::JsCast;

View file

@ -1,3 +1,5 @@
#![allow(dead_code)]
use portal::App;
use wasm_bindgen::JsCast;
use wasm_bindgen_test::*;