Welcome to mirror list, hosted at ThFree Co, Russian Federation.

publish.js.test.cjs « lib « test « tap-snapshots - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7a7502e02e338a7008bd31fe9a30b9566e0790c0 (plain)
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/* 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/lib/publish.js TAP private workspaces colorless > should output all publishes 1`] = `
Array [
  "+ @npmcli/b@1.0.0",
]
`

exports[`test/lib/publish.js TAP private workspaces colorless > should publish all non-private workspaces 1`] = `
Array [
  Object {
    "_id": "@npmcli/b@1.0.0",
    "name": "@npmcli/b",
    "readme": "ERROR: No README data found!",
    "version": "1.0.0",
  },
]
`

exports[`test/lib/publish.js TAP private workspaces with color > should output all publishes 1`] = `
Array [
  "+ @npmcli/b@1.0.0",
]
`

exports[`test/lib/publish.js TAP private workspaces with color > should publish all non-private workspaces 1`] = `
Array [
  Object {
    "_id": "@npmcli/b@1.0.0",
    "name": "@npmcli/b",
    "readme": "ERROR: No README data found!",
    "version": "1.0.0",
  },
]
`

exports[`test/lib/publish.js TAP shows usage with wrong set of arguments > should print usage 1`] = `
Error: 
Usage: npm publish

Publish a package

Usage:
npm publish [<folder>]

Options:
[--tag <tag>] [--access <restricted|public>] [--dry-run] [--otp <otp>]
[-w|--workspace <workspace-name> [-w|--workspace <workspace-name> ...]]
[-ws|--workspaces]

Run "npm help publish" for more info {
  "code": "EUSAGE",
}
`

exports[`test/lib/publish.js TAP workspaces all workspaces > should output all publishes 1`] = `
Array [
  "+ workspace-a@1.2.3-a",
  "+ workspace-b@1.2.3-n",
  "+ workspace-n@1.2.3-n",
]
`

exports[`test/lib/publish.js TAP workspaces all workspaces > should publish all workspaces 1`] = `
Array [
  Object {
    "_id": "workspace-a@1.2.3-a",
    "name": "workspace-a",
    "readme": "ERROR: No README data found!",
    "repository": Object {
      "type": "git",
      "url": "http://repo.workspace-a/",
    },
    "version": "1.2.3-a",
  },
  Object {
    "_id": "workspace-b@1.2.3-n",
    "bugs": Object {
      "url": "https://github.com/npm/workspace-b/issues",
    },
    "homepage": "https://github.com/npm/workspace-b#readme",
    "name": "workspace-b",
    "readme": "ERROR: No README data found!",
    "repository": Object {
      "type": "git",
      "url": "git+https://github.com/npm/workspace-b.git",
    },
    "version": "1.2.3-n",
  },
  Object {
    "_id": "workspace-n@1.2.3-n",
    "name": "workspace-n",
    "readme": "ERROR: No README data found!",
    "version": "1.2.3-n",
  },
]
`

exports[`test/lib/publish.js TAP workspaces json > should output all publishes as json 1`] = `
Array [
  String(
    {
      "workspace-a": {
        "id": "workspace-a@1.2.3-a"
      },
      "workspace-b": {
        "id": "workspace-b@1.2.3-n"
      },
      "workspace-n": {
        "id": "workspace-n@1.2.3-n"
      }
    }
  ),
]
`

exports[`test/lib/publish.js TAP workspaces json > should publish all workspaces 1`] = `
Array [
  Object {
    "_id": "workspace-a@1.2.3-a",
    "name": "workspace-a",
    "readme": "ERROR: No README data found!",
    "repository": Object {
      "type": "git",
      "url": "http://repo.workspace-a/",
    },
    "version": "1.2.3-a",
  },
  Object {
    "_id": "workspace-b@1.2.3-n",
    "bugs": Object {
      "url": "https://github.com/npm/workspace-b/issues",
    },
    "homepage": "https://github.com/npm/workspace-b#readme",
    "name": "workspace-b",
    "readme": "ERROR: No README data found!",
    "repository": Object {
      "type": "git",
      "url": "git+https://github.com/npm/workspace-b.git",
    },
    "version": "1.2.3-n",
  },
  Object {
    "_id": "workspace-n@1.2.3-n",
    "name": "workspace-n",
    "readme": "ERROR: No README data found!",
    "version": "1.2.3-n",
  },
]
`

exports[`test/lib/publish.js TAP workspaces one workspace > should output one publish 1`] = `
Array [
  "+ workspace-a@1.2.3-a",
]
`

exports[`test/lib/publish.js TAP workspaces one workspace > should publish given workspace 1`] = `
Array [
  Object {
    "_id": "workspace-a@1.2.3-a",
    "name": "workspace-a",
    "readme": "ERROR: No README data found!",
    "repository": Object {
      "type": "git",
      "url": "http://repo.workspace-a/",
    },
    "version": "1.2.3-a",
  },
]
`