/
Dmitry-F
/
cbt_tool
Обзор
Документация
Войти
/
Dmitry-F
/
cbt_tool
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
python-ml-service
test/application_system_test_case.rb
23 строки
603 B
Dmitriy-Filatov
feat: аудиозапись в СМЭР-дневнике
28 мар 2026, 05:27
28 мар 2026, 05:27
7b7c12e
Код
Авторство
О чём код?
require "test_helper" require "capybara/rails" require "selenium-webdriver" class ApplicationSystemTestCase < ActionDispatch::SystemTestCase driven_by :selenium, using: :chrome, screen_size: [1400, 1400] do |driver_option| driver_option.add_argument('--no-sandbox') driver_option.add_argument('--disable-dev-shm-usage') driver_option.add_argument('--disable-gpu') driver_option.add_argument('--window-size=1400,1400') end def setup DatabaseCleaner.strategy = :truncation DatabaseCleaner.start super end def teardown DatabaseCleaner.clean super end end