Skip to content

Commit

Permalink
Fix missing chai lib on integration test page
Browse files Browse the repository at this point in the history
Also update dependencies and tweek layout a little
  • Loading branch information
rejas committed Dec 19, 2019
1 parent 04ca29b commit 146c813
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 45 deletions.
2 changes: 1 addition & 1 deletion gulpfile.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ gulp.task('copy:gh-pages', () => {
return gulp.src([
'./dist/**/*',
'./lib/**/*',
'./node_modules/expect.js/**/*',
'./node_modules/chai/**/*',
'./node_modules/jquery/**/*',
'./node_modules/json3/**/*',
'./node_modules/lodash/**/*',
Expand Down
82 changes: 41 additions & 41 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
},
"devDependencies": {
"@alrra/travis-scripts": "^3.0.1",
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/register": "^7.7.4",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/register": "^7.7.7",
"auto-changelog": "^1.16.2",
"chai": "^4.2.0",
"del": "^5.1.0",
Expand Down
6 changes: 6 additions & 0 deletions test/browser/integration.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
*,
*::before,
*::after {
box-sizing: border-box;
}

body {
margin:50px 0 150px
}
Expand Down

0 comments on commit 146c813

Please sign in to comment.