Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
test: add flag 'no-cache' for test files in karma (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
fs-eire authored Feb 22, 2019
1 parent 90643cb commit 187779e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ module.exports = function(config) {
files: [
{pattern: mainFile},
{pattern: 'test/onnx-worker.js', included: false},
{pattern: 'test/data/**/*', included: false},
{pattern: 'deps/data/data/test/**/*', included: false},
{pattern: 'deps/onnx/onnx/backend/test/data/**/*', included: false},
{pattern: 'test/data/**/*', included: false, nocache: true},
{pattern: 'deps/data/data/test/**/*', included: false, nocache: true},
{pattern: 'deps/onnx/onnx/backend/test/data/**/*', included: false, nocache: true},
{pattern: 'dist/onnx-wasm.wasm', included: false},
],
proxies: {
Expand Down

0 comments on commit 187779e

Please sign in to comment.