Skip to content

Commit ea91556

Browse files
committed
upgrade deps
1 parent 7d0a2da commit ea91556

File tree

4 files changed

+2202
-6035
lines changed

4 files changed

+2202
-6035
lines changed

.github/lockdown.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# PLEASE DO NOT REMOVE THIS FILE
2+
3+
# Configuration for Repo Lockdown - https://github.com/dessant/repo-lockdown
4+
5+
# Skip issues and pull requests created before a given timestamp. Timestamp must
6+
# follow ISO 8601 (`YYYY-MM-DD`). Set to `false` to disable
7+
skipCreatedBefore: false
8+
9+
# Issues and pull requests with these labels will be ignored. Set to `[]` to disable
10+
exemptLabels: []
11+
12+
# Comment to post before closing or locking. Set to `false` to disable
13+
comment: false
14+
15+
# Label to add before closing or locking. Set to `false` to disable
16+
label: false
17+
18+
# Close issues and pull requests
19+
close: true
20+
21+
# Lock issues and pull requests
22+
lock: true
23+
24+
# Limit to only `issues` or `pulls`
25+
only: pulls
26+
# Optionally, specify configuration settings just for `issues` or `pulls`
27+
# issues:
28+
# label: wontfix
29+
30+
# pulls:
31+
# comment: >
32+
# This repository does not accept pull requests, see the README for details.
33+
# lock: false
34+
35+
# Repository to extend settings from
36+
# _extends: repo

jest.config.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* For a detailed explanation regarding each configuration property, visit:
3-
* https://jestjs.io/docs/en/configuration.html
3+
* https://jestjs.io/docs/configuration
44
*/
55

66
module.exports = {
@@ -11,7 +11,7 @@ module.exports = {
1111
// bail: 0,
1212

1313
// The directory where Jest should store its cached dependency information
14-
// cacheDirectory: "/private/var/folders/78/wsw4bc497l1b0dlb3f77xh380000gn/T/jest_dx",
14+
// cacheDirectory: "/private/var/folders/mq/wc13nlwj4gdgcyshdy5j1hgr0000gn/T/jest_dx",
1515

1616
// Automatically clear mock calls and instances between every test
1717
// clearMocks: false,
@@ -73,10 +73,10 @@ module.exports = {
7373
// An array of file extensions your modules use
7474
// moduleFileExtensions: [
7575
// "js",
76-
// "json",
7776
// "jsx",
7877
// "ts",
7978
// "tsx",
79+
// "json",
8080
// "node"
8181
// ],
8282

@@ -137,7 +137,7 @@ module.exports = {
137137
// snapshotSerializers: [],
138138

139139
// The test environment that will be used for testing
140-
testEnvironment: "node",
140+
// testEnvironment: "jest-environment-node",
141141

142142
// Options that will be passed to the testEnvironment
143143
// testEnvironmentOptions: {},
@@ -163,7 +163,7 @@ module.exports = {
163163
// testResultsProcessor: undefined,
164164

165165
// This option allows use of a custom test runner
166-
// testRunner: "jasmine2",
166+
// testRunner: "jest-circus/runner",
167167

168168
// This option sets the URL for the jsdom environment. It is reflected in properties such as location.href
169169
// testURL: "http://localhost",

0 commit comments

Comments
 (0)