UNPKG

ncsbe-lib

Version:

JavaScript library for working with North Carolina State Board of Elections (NCSBE) historical election data

21 lines (16 loc) 485 B
import { NCSBE } from '../lib/ncsbe'; /* * Global NCSBE instance for testing. * * Since the dataset is read-only, test cases won't interfere with each other. * This also avoids the overhead of reinitializing the instance for each test suite. */ let ncsbeInstance: NCSBE; beforeAll(async () => { ncsbeInstance = new NCSBE('2024-11-05'); await ncsbeInstance.initialize(); }); export function getNCSBEInstance() { return ncsbeInstance; } // This is for testing husky