Had to add it into one of my Jest setupFiles
after a mswjs bump from 2.5.0 to 2.6.0 because of the same error.
Did it like this thanks to Juraj :
import {
BroadcastChannel
} from 'worker_threads'
Reflect.set(globalThis, 'BroadcastChannel', BroadcastChannel)