Show window titlebar in test

This commit is contained in:
Evan Hahn 2021-07-28 18:46:25 -05:00 committed by GitHub
parent 6e4a3561f1
commit b826097237
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 29 additions and 12 deletions

View file

@ -39,3 +39,6 @@ export const parseEnvironment = makeEnumParser(
Environment,
Environment.Production
);
export const isTestEnvironment = (env: Environment): boolean =>
env === Environment.Test || env === Environment.TestLib;