You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
319 B
13 lines
319 B
import {initializeListenersForHomeDropdowns } from "home"
|
|
|
|
it("returns true when called", () =>{
|
|
|
|
document.body.innerHTML =
|
|
'<div>' +
|
|
' <select id="school-dropdown"></select>' +
|
|
' <select id="district-dropdown"></select>' +
|
|
'</div>';
|
|
|
|
expect(initializeListenersForHomeDropdowns()).toBe(true)
|
|
})
|