Skip to content

Commit 3105e5f

Browse files
authored
Add basic test and fix import issue with react server dom (#39)
1 parent 2432073 commit 3105e5f

File tree

5 files changed

+30
-2
lines changed

5 files changed

+30
-2
lines changed

.github/workflows/ci.yml

+3
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,6 @@ jobs:
5151

5252
- name: Build the project
5353
run: npm run build
54+
55+
- name: Test the project
56+
run: npm run test

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"build": "run-s build:*",
3232
"build:spago": "spago build",
3333
"build:pulp": "pulp build -o output-pulp",
34-
"clean": "rm -rf .spago bower_components output output-pulp node_modules .pulp-cache .psci_modules"
34+
"clean": "rm -rf .spago bower_components output output-pulp node_modules .pulp-cache .psci_modules",
35+
"test": "spago -x test.dhall test"
3536
}
3637
}

src/React/Basic/DOM/Server.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
import ReactDOMServer from "react-dom/server";
1+
import ReactDOMServer from "react-dom/server.js";
22
export var renderToString = ReactDOMServer.renderToString;
33
export var renderToStaticMarkup = ReactDOMServer.renderToStaticMarkup;

test.dhall

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
let conf = ./spago.dhall
2+
3+
in conf // {
4+
sources = conf.sources # [ "test/**/*.purs" ],
5+
dependencies = conf.dependencies # [ "effect", "spec", "aff" ]
6+
}

test/Main.purs

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
module Test.Main where
2+
3+
import Prelude
4+
5+
import Effect (Effect)
6+
import Effect.Aff (launchAff_)
7+
import React.Basic.DOM.Server (renderToString)
8+
import Test.Spec (describe, it)
9+
import Test.Spec.Assertions (shouldEqual)
10+
import Test.Spec.Reporter.Console (consoleReporter)
11+
import Test.Spec.Runner (runSpec)
12+
13+
main :: Effect Unit
14+
main = launchAff_ $ runSpec [consoleReporter] do
15+
describe "react-basic-dom-spec" do
16+
describe "react-basic-dom-server" do
17+
it "imports properly" do
18+
renderToString mempty `shouldEqual` ""

0 commit comments

Comments
 (0)