Skip to content

Commit

Permalink
chore: add jest for reactivity
Browse files Browse the repository at this point in the history
  • Loading branch information
cuixiaorui committed Aug 12, 2021
1 parent ff937f6 commit 987581c
Show file tree
Hide file tree
Showing 3 changed files with 3,362 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/reactivity/babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
presets: [
["@babel/preset-env", { targets: { node: "current" } }],
"@babel/preset-typescript",
],
};
20 changes: 20 additions & 0 deletions src/reactivity/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "reactivity",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.0",
"babel-jest": "^27.0.6",
"jest": "^27.0.6"
}
}
Loading

0 comments on commit 987581c

Please sign in to comment.