-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Splitting this up into libs next (also totally will really add unit t…
…ests :p)
- Loading branch information
Showing
11 changed files
with
1,499 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,21 @@ | ||
{ | ||
"name": "asap", | ||
"description": "pewpewpew", | ||
"version": "0.7.2", | ||
"main": "index.js", | ||
"author": "kalium", | ||
"license": "MIT", | ||
"dependencies": { | ||
"electron": "^1.6.6", | ||
"electron-packager": "^8.7.0" | ||
"electron": "^1.6.6" | ||
}, | ||
"devDependencies": { | ||
"chai": "^3.5.0", | ||
"mocha": "^3.2.0", | ||
"ava": "^0.19.1", | ||
"node-sass": "^4.5.2", | ||
"nodemon": "^1.11.0" | ||
}, | ||
"scripts": { | ||
"build-css": "node-sass --include-path sass assets\\sass\\style.sass assets\\css\\style.css", | ||
"watch-css": "nodemon -e sass -x \"npm run build-css\"", | ||
"sass": "node-sass -w -r ./ -o ./", | ||
"test": "mocha", | ||
"watch-css": "node-sass -w -r ./app/assets/sass -o ./app/assets/css", | ||
"test": "ave", | ||
"start": "electron ." | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
'run.vbs | ||
CreateObject("Wscript.Shell").Run "electron .", 0, True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,8 @@ | ||
const fs = require('fs') | ||
const chai = require('chai') | ||
const assert = chai.assert | ||
//const asap = require('../') | ||
import test from 'ava' | ||
|
||
// todo: add real unit tests | ||
describe('true', function () { | ||
it('equals true', function () { | ||
assert.equal(true, true) | ||
}) | ||
}) | ||
// Testing ava :3 | ||
test('The test that passes', t => { | ||
t.pass() | ||
}) | ||
|
||
test.todo('write unit tests :p') |
Oops, something went wrong.