Skip to content

Commit

Permalink
chore: setup ava
Browse files Browse the repository at this point in the history
  • Loading branch information
artmadeit committed Jan 17, 2020
1 parent 6fa8787 commit d815b5d
Show file tree
Hide file tree
Showing 3 changed files with 1,767 additions and 31 deletions.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,15 @@
"dist": "electron-builder",
"postinstall": "electron-builder install-app-deps",
"release": "electron-builder build",
"preprocess": "npx tailwind build src/gui/styles.css -o src/gui/preprocessed.css"
"preprocess": "npx tailwind build src/gui/styles.css -o src/gui/preprocessed.css",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ouracademy/electrocornea.git"
},
"devDependencies": {
"ava": "^2.4.0",
"electron": "7.1.2",
"electron-builder": "^21.2.0",
"prettier": "1.19.1"
Expand Down Expand Up @@ -50,4 +52,4 @@
"winston": "^3.2.1",
"winston-mongodb": "^5.0.1"
}
}
}
5 changes: 5 additions & 0 deletions test-holas.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const test = require("ava");

test("my passing test", t => {
t.pass();
});
Loading

0 comments on commit d815b5d

Please sign in to comment.