Skip to content

Commit

Permalink
remove legacy test framework
Browse files Browse the repository at this point in the history
  • Loading branch information
mdwragg committed Feb 12, 2016
1 parent bd7f7fd commit 479145a
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 23 deletions.
19 changes: 1 addition & 18 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,15 +97,6 @@ module.exports = function (grunt) {
}
},

webdriver: {
options: {
specFiles: ['test/*spec.js']
},
local: {
webdrivers: ['chrome']
}
},

concurrent: {
devmode: {
tasks: ['watch', 'depserve'],
Expand All @@ -122,7 +113,6 @@ module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-dep-serve');
grunt.loadNpmTasks('webdriver-support');
grunt.loadNpmTasks('grunt-autoprefixer');
grunt.loadNpmTasks('grunt-concurrent');

Expand All @@ -144,17 +134,10 @@ module.exports = function (grunt) {
'concurrent:devmode'
]);

// Default task.
grunt.registerTask('test', 'Test', [
'jshint',
'webdriver'
]);

grunt.registerTask('release', 'Release', [
'clean',
'shell:bower',
'default',
'test'
'default'
]);

};
15 changes: 14 additions & 1 deletion css/aha-table-sketch.css
Original file line number Diff line number Diff line change
Expand Up @@ -922,7 +922,7 @@ textarea {
padding: 0 1em;
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
font: inherit;
line-height: calc(2em - 2px);
line-height: calc($inuit-btn-height - 2px);
-webkit-font-smoothing: antialiased;
cursor: pointer;
text-align: center;
Expand All @@ -943,6 +943,13 @@ textarea {
.btn:active {
outline: none; }

/** Workaround for FF since it does not support calc().
* Other buttons appear ok with the height declaration, but non-button elements do not.
**/
@-moz-document url-prefix() {
.btn:not(button) {
line-height: 1.8em; } }

button.btn {
-webkit-appearance: button; }

Expand Down Expand Up @@ -1008,6 +1015,12 @@ button.btn {
border-radius: 6.6666666667em;
padding: 1px 0 0 1px; }

/** Workaround for FF since it does not support calc().
**/
@-moz-document url-prefix() {
.btn--icon {
line-height: 1.8em; } }

.btn--bare__pagination {
width: 32px; }

Expand Down
15 changes: 14 additions & 1 deletion css/aha-table.css
Original file line number Diff line number Diff line change
Expand Up @@ -935,7 +935,7 @@ textarea {
padding: 0 1em;
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
font: inherit;
line-height: calc(2em - 2px);
line-height: calc($inuit-btn-height - 2px);
-webkit-font-smoothing: antialiased;
cursor: pointer;
text-align: center;
Expand All @@ -956,6 +956,13 @@ textarea {
.btn:active {
outline: none; }

/** Workaround for FF since it does not support calc().
* Other buttons appear ok with the height declaration, but non-button elements do not.
**/
@-moz-document url-prefix() {
.btn:not(button) {
line-height: 1.8em; } }

button.btn {
-webkit-appearance: button; }

Expand Down Expand Up @@ -1021,6 +1028,12 @@ button.btn {
border-radius: 6.6666666667em;
padding: 1px 0 0 1px; }

/** Workaround for FF since it does not support calc().
**/
@-moz-document url-prefix() {
.btn--icon {
line-height: 1.8em; } }

.btn--bare__pagination {
width: 32px; }

Expand Down
9 changes: 8 additions & 1 deletion css/px-data-table-sketch.css
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,7 @@ textarea {
padding: 0 1em;
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
font: inherit;
line-height: calc(2em - 2px);
line-height: calc($inuit-btn-height - 2px);
-webkit-font-smoothing: antialiased;
cursor: pointer;
text-align: center;
Expand All @@ -841,6 +841,13 @@ textarea {
.btn:active {
outline: none; }

/** Workaround for FF since it does not support calc().
* Other buttons appear ok with the height declaration, but non-button elements do not.
**/
@-moz-document url-prefix() {
.btn:not(button) {
line-height: 1.8em; } }

button.btn {
-webkit-appearance: button; }

Expand Down
9 changes: 8 additions & 1 deletion css/px-data-table.css
Original file line number Diff line number Diff line change
Expand Up @@ -833,7 +833,7 @@ textarea {
padding: 0 1em;
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
font: inherit;
line-height: calc(2em - 2px);
line-height: calc($inuit-btn-height - 2px);
-webkit-font-smoothing: antialiased;
cursor: pointer;
text-align: center;
Expand All @@ -854,6 +854,13 @@ textarea {
.btn:active {
outline: none; }

/** Workaround for FF since it does not support calc().
* Other buttons appear ok with the height declaration, but non-button elements do not.
**/
@-moz-document url-prefix() {
.btn:not(button) {
line-height: 1.8em; } }

button.btn {
-webkit-appearance: button; }

Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
"grunt-contrib-jshint": "~v0.10.0",
"grunt-contrib-watch": "~v0.6.1",
"grunt-dep-serve": "git+https://github.com/GeneralElectric/grunt-dep-serve.git#master",
"webdriver-support": "git+https://github.com/PredixDev/webdriver-support.git#v2.2.1",
"grunt-autoprefixer": "^3.0.3",
"node-sass-import-once": "^1.2.0",
"grunt-concurrent": "^2.0.1"
Expand Down

0 comments on commit 479145a

Please sign in to comment.