We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0f294e commit 696ccf2Copy full SHA for 696ccf2
font_test.go
@@ -30,13 +30,19 @@ import (
30
var _ = Describe("Font", func() {
31
Context("Go", func() {
32
It("should be able to get the Go font face", func() {
33
+ Expect(Go.Regular(nil)).ToNot(BeNil())
34
Expect(Go.Bold(nil)).ToNot(BeNil())
35
+ Expect(Go.Italic(nil)).ToNot(BeNil())
36
+ Expect(Go.BoldItalic(nil)).ToNot(BeNil())
37
})
38
39
40
Context("Hack", func() {
41
It("should be able to get the Hack font face", func() {
42
+ Expect(Hack.Regular(nil)).ToNot(BeNil())
43
Expect(Hack.Bold(nil)).ToNot(BeNil())
44
+ Expect(Hack.Italic(nil)).ToNot(BeNil())
45
+ Expect(Hack.BoldItalic(nil)).ToNot(BeNil())
46
47
48
0 commit comments