Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
Restore test, use esModuleInterop in tsconfig
  • Loading branch information
emeeks committed Apr 11, 2020
1 parent 0ad4d55 commit ac76ae4
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "semiotic",
"version": "2.0.0-rc.0",
"version": "2.0.0-rc.1",
"description": "The semiotic JavaScript data visualization framework",
"main": "lib/index.js",
"unpkg": "dist/semiotic.min.js",
Expand Down Expand Up @@ -229,4 +229,4 @@
"eslintConfig": {
"extends": "react-app"
}
}
}
14 changes: 14 additions & 0 deletions src/components/FacetController.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import React from "react"
import { mount } from "enzyme"
import FacetController from "./FacetController"

describe("FacetController", () => {
it("renders without crashing", () => {
mount(<FacetController
>
<div>Div Child 1</div>
<div>Div Child 2</div>
</FacetController>)
})

})
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"target": "es5",
"downlevelIteration": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"lib": [
"esnext",
"dom",
Expand Down

0 comments on commit ac76ae4

Please sign in to comment.