-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.purs
71 lines (68 loc) · 1.81 KB
/
Main.purs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
module Test.Main where
import Prelude
import Effect (Effect)
import Effect.Aff (launchAff_)
import Test.AlignSpec as Align
import Test.AnimationsSpec as Animations
import Test.BackgroundsSpec as Backgrounds
import Test.BoxSpec as Box
import Test.ColorSpec as Color
import Test.ContentSpec as Content
import Test.DisplaySpec as Display
import Test.FlexboxSpec as Flexbox
import Test.FontsSpec as Fonts
import Test.GridSpec as Grid
import Test.ImagesSpec as Images
import Test.InlineSpec as Inline
import Test.ListsSpec as Lists
import Test.MaskingSpec as Masking
import Test.MediaQueriesSpec as MediaQueries
import Test.OverflowSpec as Overflow
import Test.PositionSpec as Position
import Test.RenderSpec as Render
import Test.SelectorsSpec as Selectors
import Test.SizingSpec as Sizing
import Test.Spec.Reporter (consoleReporter)
import Test.Spec.Runner (runSpec)
import Test.TextDecorSpec as TextDecor
import Test.TextSpec as Text
import Test.TransformsSpec as Transforms
import Test.TransitionsSpec as Transitions
import Test.UISpec as UI
import Test.UnsafeDeclarationSpec as UnsafeDeclaration
import Test.VisufxSpec as Visufx
import Test.VisurenSpec as Visuren
import Test.WritingModesSpec as WritingModes
main :: Effect Unit
main =
launchAff_ $
runSpec [ consoleReporter ] do
Align.spec
Animations.spec
Backgrounds.spec
Box.spec
Color.spec
Content.spec
Display.spec
Flexbox.spec
Fonts.spec
Grid.spec
Images.spec
Inline.spec
Lists.spec
Masking.spec
MediaQueries.spec
Overflow.spec
Position.spec
Render.spec
Selectors.spec
Sizing.spec
Text.spec
TextDecor.spec
Transforms.spec
Transitions.spec
UI.spec
UnsafeDeclaration.spec
Visufx.spec
Visuren.spec
WritingModes.spec