Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/src/commit/48ac98ba4cfa81b6c738c4698858510289660fd5/third-party/ArduinoJson/extras/tests/MixedConfiguration/decode_unicode_1.cpp
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
#define ARDUINOJSON_DECODE_UNICODE 1
|
|
#include <ArduinoJson.h>
|
|
|
|
#include <catch.hpp>
|
|
|
|
TEST_CASE("ARDUINOJSON_DECODE_UNICODE == 1") {
|
|
DynamicJsonDocument doc(2048);
|
|
DeserializationError err = deserializeJson(doc, "\"\\uD834\\uDD1E\"");
|
|
|
|
REQUIRE(err == DeserializationError::Ok);
|
|
}
|
|
|