// ============================================================================
// WASM Integration Tests
// ============================================================================
//
// Browser-based WASM tests using wasm-bindgen-test framework.
// Tests cover OLS regression, diagnostic tests, error handling, CSV parsing,
// regularized regression, and domain checking.
//
// Run with: wasm-pack test --chrome --headless
extern crate wasm_bindgen_test;
use *;
// Import all test modules
// Re-export all tests at the crate level so wasm-bindgen-test can find them
use fixtures;
use integration_tests;
use diagnostic_tests;
use ols_tests;
use polynomial_tests;
use regularized_tests;
use utility_tests;