Skip to content

Commit

Permalink
add support files to build and test
Browse files Browse the repository at this point in the history
  • Loading branch information
koddsson committed Feb 6, 2019
1 parent f56148e commit 360e406
Show file tree
Hide file tree
Showing 6 changed files with 5,612 additions and 5 deletions.
11 changes: 11 additions & 0 deletions .flowconfig
@@ -0,0 +1,11 @@
[ignore]

[include]

[libs]

[lints]

[options]

[strict]
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
dist/
node_modules/
14 changes: 14 additions & 0 deletions karma.config.js
@@ -0,0 +1,14 @@
module.exports = function(config) {
config.set({
frameworks: ['mocha', 'chai'],
files: ['./dist/session-resume.umd.js', 'test.js'],
reporters: ['mocha'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
browsers: ['ChromeHeadless'],
autoWatch: false,
singleRun: true,
concurrency: Infinity
})
}

0 comments on commit 360e406

Please sign in to comment.