Yang Qin

Results 3 issues of Yang Qin

Am I doing some wrong? this not works ```rust use calamine::DataType; use chrono::NaiveDateTime; use serde::{Deserialize, Serialize}; #[derive(Serialize, Deserialize, Debug)] struct InputRowRaw { #[serde(rename(deserialize = "other_name"))] #[serde(deserialize_with = "de_opt_native_datetime")] purchase_time: Option,...

related issue: https://github.com/xstevenyung/fresh-seo/issues/25 Based on the [Fresh Project](https://github.com/denoland/fresh/tree/main/tests), I wrote some code for plugin testing. In the `tests/` directory, the `fixture/` directory is a stub Fresh site as a test...

Look into [Fresh](https://github.com/denoland/fresh/blob/main/tests/plugin_test.ts). It prepares a fixture(a stub Fresh server) to run the plugin and runs a test on that fixture. I'm not sure if this way is the best...