Skip to content

Commit

Permalink
Merge pull request #383 from Duke-MatSci/#375_xlsx_curation
Browse files Browse the repository at this point in the history
feat(#375): Spreadsheet curation logic
  • Loading branch information
tholulomo authored May 10, 2023
2 parents 18e3918 + 15db659 commit 1d6f0c9
Show file tree
Hide file tree
Showing 16 changed files with 8,515 additions and 16 deletions.
14 changes: 12 additions & 2 deletions app/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ module.exports = {
transform: {
'^.+\\.vue$': 'vue-jest',
'\\.(gif)$': '<rootDir>/tests/jest/__mocks__/fileMock.js',
'\\.(ttl|rq)': 'jest-raw-loader'
'\\.(ttl|rq)': 'jest-raw-loader',
'^.+\\.js$': 'babel-jest',
'.*\\.(vue)$': 'vue-jest'
},
snapshotSerializers: [
'<rootDir>/node_modules/jest-serializer-vue'
Expand All @@ -12,5 +14,13 @@ module.exports = {
d3: '<rootDir>/node_modules/d3/dist/d3.min.js',
'style-loader!(.*)': '<rootDir>/node_modules/style-loader'
},
setupFilesAfterEnv: ['<rootDir>/tests/jest/script/test-setup.js']
setupFilesAfterEnv: ['<rootDir>/tests/jest/script/test-setup.js'],
moduleFileExtensions: ['js', 'vue', 'json'],
globals: {
'vue-jest': {
templateCompiler: {
compiler: require('vue-template-babel-compiler')
}
}
}
}
6 changes: 5 additions & 1 deletion resfulservice/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# node
node_modules/
package-lock.json
package-lock.json

#ignore coverage
coverage
.nyc_output
Loading

0 comments on commit 1d6f0c9

Please sign in to comment.