forked from espressif/esp-idf
12 lines
299 B
Python
12 lines
299 B
Python
![]() |
# SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
|
||
|
# SPDX-License-Identifier: CC0-1.0
|
||
|
|
||
|
import pytest
|
||
|
from pytest_embedded_idf.dut import IdfDut
|
||
|
|
||
|
|
||
|
@pytest.mark.supported_targets
|
||
|
@pytest.mark.generic
|
||
|
def test_startup(dut: IdfDut) -> None:
|
||
|
dut.expect_exact('I2C-WIFI test success')
|