mirror of
https://github.com/espressif/esp-idf
synced 2025-04-17 20:20:09 -04:00
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')
|