/
githubmirror
/
socket.io
Обзор
Документация
Войти
/
githubmirror
/
socket.io
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/engine.io-protocol/v3-test-suite/index.html
30 строк
705 B
Damien Arrachequesne
refactor: prepare the migration to a monorepo
08 июл 2024, 13:16
Не верифицирован
08 июл 2024, 13:16
68efa28
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Test suite for the Engine.IO protocol</title> <link rel="stylesheet" href="https://unpkg.com/mocha@9/mocha.css" /> </head> <body> <div id="mocha"></div> <script src="https://unpkg.com/mocha@9/mocha.js"></script> <script src="https://unpkg.com/chai@4/chai.js" ></script> <script src="https://unpkg.com/chai-string@1/chai-string.js" ></script> <script class="mocha-init"> mocha.setup("bdd"); mocha.checkLeaks(); </script> <script type="module" src="test-suite.js"></script> <script class="mocha-exec"> mocha.run(); </script> </body> </html>