1
0
mirror of https://github.com/esphome/esphome.git synced 2025-11-17 23:35:47 +00:00

move to socket

This commit is contained in:
J. Nick Koston
2025-11-02 21:57:57 -06:00
parent 2ac95abea7
commit acd26600dd
7 changed files with 87 additions and 75 deletions

View File

@@ -0,0 +1,12 @@
"""Configuration file for socket component tests."""
import pytest
from esphome.core import CORE
@pytest.fixture(autouse=True)
def reset_core():
"""Reset CORE after each test."""
yield
CORE.reset()