From 62f11e6e6ea5adc8d7e1d47d56bcc1542180e010 Mon Sep 17 00:00:00 2001 From: Sebastian Silbermann Date: Sun, 13 Oct 2019 19:04:30 +0200 Subject: [PATCH 1/7] chore: Add codesandbox ci config --- .codesandbox/ci.json | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .codesandbox/ci.json diff --git a/.codesandbox/ci.json b/.codesandbox/ci.json new file mode 100644 index 00000000..4c997f39 --- /dev/null +++ b/.codesandbox/ci.json @@ -0,0 +1,3 @@ +{ + "sandboxes": ["vanilla", "github/kentcdodds/react-testing-library-examples"] +} From 5d5374b58ec2b57b2acb66d27dc6a7a088e5034c Mon Sep 17 00:00:00 2001 From: Sebastian Silbermann Date: Wed, 30 Oct 2019 08:57:44 +0100 Subject: [PATCH 2/7] Only build vanilla sandbox --- .codesandbox/ci.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.codesandbox/ci.json b/.codesandbox/ci.json index 4c997f39..74245b23 100644 --- a/.codesandbox/ci.json +++ b/.codesandbox/ci.json @@ -1,3 +1,3 @@ { - "sandboxes": ["vanilla", "github/kentcdodds/react-testing-library-examples"] + "sandboxes": ["vanilla"] } From f31b116b735b9b042d6cbfc30ca9ec6324216fdc Mon Sep 17 00:00:00 2001 From: Sebastian Silbermann Date: Wed, 30 Oct 2019 09:03:44 +0100 Subject: [PATCH 3/7] Try another repo from kent --- .codesandbox/ci.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.codesandbox/ci.json b/.codesandbox/ci.json index 74245b23..77af81f9 100644 --- a/.codesandbox/ci.json +++ b/.codesandbox/ci.json @@ -1,3 +1,3 @@ { - "sandboxes": ["vanilla"] + "sandboxes": ["github/kentcdodds/dom-testing-library-with-anything"] } From bf9e709d8c220feff5e35dee836eb9deffe9e9fb Mon Sep 17 00:00:00 2001 From: Sebastian Silbermann Date: Thu, 31 Oct 2019 19:47:22 +0100 Subject: [PATCH 4/7] poke codesandbox From 7b9adaa032d281ac67de3e2057c0e7b6fc0ac94b Mon Sep 17 00:00:00 2001 From: Sebastian Silbermann Date: Thu, 31 Oct 2019 19:55:39 +0100 Subject: [PATCH 5/7] Use react-testing-library-examples instead --- .codesandbox/ci.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.codesandbox/ci.json b/.codesandbox/ci.json index 77af81f9..36f65be2 100644 --- a/.codesandbox/ci.json +++ b/.codesandbox/ci.json @@ -1,3 +1,3 @@ { - "sandboxes": ["github/kentcdodds/dom-testing-library-with-anything"] + "sandboxes": ["github/kentcdodds/react-testing-library-examples"] } From 4b2b463a118dbe011272741a6bfb7cc8206df83d Mon Sep 17 00:00:00 2001 From: Sebastian Silbermann Date: Thu, 31 Oct 2019 20:14:29 +0100 Subject: [PATCH 6/7] Add function for smoke testing transitive deps --- src/index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/index.js b/src/index.js index 1469303f..9753100d 100644 --- a/src/index.js +++ b/src/index.js @@ -25,3 +25,7 @@ export { queries, queryHelpers, } + +export function csb() { + return 'yay!' +} From 8737c6382372d41c9974d9a00c88add97442c554 Mon Sep 17 00:00:00 2001 From: Sebastian Silbermann Date: Fri, 1 Nov 2019 08:03:56 +0100 Subject: [PATCH 7/7] Revert "Add function for smoke testing transitive deps" This reverts commit 4b2b463a118dbe011272741a6bfb7cc8206df83d. --- src/index.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/index.js b/src/index.js index 9753100d..1469303f 100644 --- a/src/index.js +++ b/src/index.js @@ -25,7 +25,3 @@ export { queries, queryHelpers, } - -export function csb() { - return 'yay!' -}