How to inject cookies in a test using Jest?

Can you please tell me the steps to inject cookies in a test using Jest?

Hi Alex,

Please use the following code to inject cookies in Jest:

driver.Manage().Cookies.AddCookie(new Cookie("key", "value"));