For testing inputs/outputs specified as vectors, I need to be able to programmatically create the desired Vec[Bool] for poke and expect. Seq[Bool] is a convient structure to create either directly (e.g., Seq.tabulate(n) {i => (i%2==0).B}) or from a UInt (e.g., 5.U(6.W).toBools).
In a chiseltest, how can I use this Seq[Bool] for poke and expect? Vec.Lit(Seq[Bool]) doesn't seem to be supported.