fix: implemented TD-07, chat await path with deadline

This commit is contained in:
2026-06-12 12:08:27 +02:00
parent 2e633922f9
commit 66938c23f2
6 changed files with 124 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
defmodule BDS.WxrParserTest do
use ExUnit.Case, async: true
use ExUnit.Case, async: false
alias BDS.WxrParser
@@ -102,6 +102,8 @@ defmodule BDS.WxrParserTest do
</rss>
"""
_warmup = WxrParser.parse_xml(sample_wxr_xml())
atom_count_before = :erlang.system_info(:atom_count)
parsed = WxrParser.parse_xml(xml)
atom_count_after = :erlang.system_info(:atom_count)