Skip to content

Commit 47db31e

Browse files
authored
Merge pull request #144 from oslabs-beta/main
v.14 Launch
2 parents c46c3c6 + 52e064a commit 47db31e

File tree

150 files changed

+6570
-2005
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

150 files changed

+6570
-2005
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ bower_components
3737
# Compiled binary addons (https://nodejs.org/api/addons.html)
3838
build/Release
3939

40+
# Test coverage directory
41+
coverage/
42+
4043
# Dependency directories
4144
node_modules/
4245
jspm_packages/

declaration.d.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
declare module '*.scss' {
22
const content: Record<string, string>;
33
export default content;
4-
}
5-
6-
declare module 'react-beautiful-dnd'
4+
}

jest.config.js

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,23 @@ module.exports = {
22
moduleNameMapper: {
33
'\\.(css|scss)$': '<rootDir>/src/__tests__/styleMock.js',
44
'\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)':'<rootDir>/src/__tests__/styleMock.js',
5-
}
5+
},
6+
"collectCoverage": true,
7+
"collectCoverageFrom": [
8+
"./src/components/**",
9+
"./src/context/**",
10+
"./src/pages/**",
11+
"./src/components/**",
12+
"./src/utils/**",
13+
"./src/**",
14+
"./public/**",
15+
"./server/**",
16+
"!**/*.json"
17+
],
18+
"roots": [
19+
"./src/__tests__",
20+
"./src",
21+
"./public",
22+
"./server",
23+
],
624
}

0 commit comments

Comments
 (0)