1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
/* IMPORTANT
* This snapshot file is auto-generated, but designed for humans.
* It should be checked into source control and tracked carefully.
* Re-generate by setting TAP_SNAPSHOT=1 and running tests.
* Make sure to inspect the output below. Do not ignore changes!
*/
'use strict'
exports[`test/index.js TAP compare two diff specs > should output expected diff 1`] = `
diff --git a/index.js b/index.js
index v1.0.0..v2.0.0 100644
--- a/index.js
+++ b/index.js
@@ -1,2 +1,2 @@
module.exports =
- "a1"
+ "a2"
diff --git a/package.json b/package.json
index v1.0.0..v2.0.0 100644
--- a/package.json
+++ b/package.json
@@ -1,4 +1,4 @@
{
"name": "a",
- "version": "1.0.0"
+ "version": "2.0.0"
}
`
exports[`test/index.js TAP folder in node_modules nested, absolute path > should output expected diff 1`] = `
diff --git a/package.json b/package.json
index v2.0.0..v2.0.1 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "b",
- "version": "2.0.0",
+ "version": "2.0.1",
"scripts": {
"prepare": "node prepare.js"
}
diff --git a/prepare.js b/prepare.js
index v2.0.0..v2.0.1 100644
--- a/prepare.js
+++ b/prepare.js
@@ -1,1 +0,0 @@
-throw new Error("ERR")
/ No newline at end of file
`
exports[`test/index.js TAP folder in node_modules nested, relative path > should output expected diff 1`] = `
diff --git a/package.json b/package.json
index v2.0.0..v2.0.1 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "b",
- "version": "2.0.0",
+ "version": "2.0.1",
"scripts": {
"prepare": "node prepare.js"
}
diff --git a/prepare.js b/prepare.js
index v2.0.0..v2.0.1 100644
--- a/prepare.js
+++ b/prepare.js
@@ -1,1 +0,0 @@
-throw new Error("ERR")
/ No newline at end of file
`
exports[`test/index.js TAP folder in node_modules top-level, absolute path > should output expected diff 1`] = `
diff --git a/package.json b/package.json
index v1.0.0..v1.0.1 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "a",
- "version": "1.0.0",
+ "version": "1.0.1",
"scripts": {
"prepare": "node prepare.js"
}
diff --git a/prepare.js b/prepare.js
index v1.0.0..v1.0.1 100644
--- a/prepare.js
+++ b/prepare.js
@@ -1,1 +0,0 @@
-throw new Error("ERR")
/ No newline at end of file
`
exports[`test/index.js TAP folder in node_modules top-level, relative path > should output expected diff 1`] = `
diff --git a/package.json b/package.json
index v1.0.0..v1.0.1 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "a",
- "version": "1.0.0",
+ "version": "1.0.1",
"scripts": {
"prepare": "node prepare.js"
}
diff --git a/prepare.js b/prepare.js
index v1.0.0..v1.0.1 100644
--- a/prepare.js
+++ b/prepare.js
@@ -1,1 +0,0 @@
-throw new Error("ERR")
/ No newline at end of file
`
|