This repository has been archived by the owner on Nov 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* use chai should explicitly * use if statements to improve readability * use forEach instead of filter as we are not using the returned array for anything at all * remove unneeded semicolon * move instance method to static method as it does not use any instance properties or methods. * fix indentation * Wrap cases in blocks to stop lexical declarations being hoisted to start of switch statement * Add a default case to capture scenarios where and ad has a type we not match against * Fix linting issues in sass * use proclaim instead of chai as to conform with all other origami components * Remove features not needed for obt7 * fix linting issues * Update circle.yml * Update ads.js * Update ads.js
- Loading branch information
1 parent
02589fb
commit cf7181b
Showing
17 changed files
with
305 additions
and
340 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,14 @@ | ||
machine: | ||
pre: | ||
- sudo curl --output /usr/local/bin/phantomjs https://s3.amazonaws.com/circle-downloads/phantomjs-2.1.1 | ||
node: | ||
version: 6 | ||
post: | ||
- npm install -g origami-build-tools | ||
- npm install -g origami-build-tools@^7 | ||
dependencies: | ||
override: | ||
- obt install | ||
cache_directories: | ||
- "node_modules" | ||
test: | ||
override: | ||
- obt test | ||
- obt verify | ||
- obt test |
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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,27 +1,3 @@ | ||
{ | ||
"private": true, | ||
"scripts": { | ||
"test": "./node_modules/karma/bin/karma start karma.conf.js" | ||
}, | ||
"devDependencies": { | ||
"babel-loader": "^5.3.2", | ||
"babel-runtime": "^5.6.15", | ||
"bower-webpack-plugin": "^0.1.8", | ||
"chai": "^3.5.0", | ||
"imports-loader": "^0.6.4", | ||
"json-loader": "^0.5.4", | ||
"karma": "^0.13.15", | ||
"karma-chai": "^0.1.0", | ||
"karma-chrome-launcher": "^1.0.1", | ||
"karma-cli": "^0.1.1", | ||
"karma-firefox-launcher": "^1.0.0", | ||
"karma-mocha": "^1.3.0", | ||
"karma-phantomjs-launcher": "^1.0.0", | ||
"karma-sinon": "^1.0.4", | ||
"karma-webpack": "^1.7.0", | ||
"mocha": "^3.3.0", | ||
"origami-build-tools": "^5.0.0", | ||
"sinon": "^2.0.0-pre.5", | ||
"webpack": "^1.12.2" | ||
} | ||
"private": 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
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 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
Oops, something went wrong.