aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/globalStyles.test.ts
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2020-10-12 17:56:49 +0100
committerGravatar Joe Banks <[email protected]>2020-10-12 17:56:49 +0100
commit3adfb0db3493a55276b126bdbcb343da89218601 (patch)
treee65af73279eb7a4379652d8d664cbfd2e6a9880c /src/tests/globalStyles.test.ts
parentMerge 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.ts5
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();
+})