diff options
author | 2020-10-12 17:56:49 +0100 | |
---|---|---|
committer | 2020-10-12 17:56:49 +0100 | |
commit | 3adfb0db3493a55276b126bdbcb343da89218601 (patch) | |
tree | e65af73279eb7a4379652d8d664cbfd2e6a9880c /src/tests/globalStyles.test.ts | |
parent | Merge pull request #24 from python-discord/sentry/remove-tracing (diff) |
Add many new tests
Diffstat (limited to 'src/tests/globalStyles.test.ts')
-rw-r--r-- | src/tests/globalStyles.test.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/tests/globalStyles.test.ts b/src/tests/globalStyles.test.ts new file mode 100644 index 0000000..d44cc51 --- /dev/null +++ b/src/tests/globalStyles.test.ts @@ -0,0 +1,5 @@ +import globalStyles from "../globalStyles"; + +test("global styles emotion css compiles", () => { + expect(globalStyles.styles).not.toBeUndefined(); +}) |