From bc97537c9771afe2477d8337ee9c4d5f382d33c9 Mon Sep 17 00:00:00 2001 From: Pierre Vanduynslager Date: Tue, 28 Jan 2020 10:33:24 -0500 Subject: [PATCH] test: fix copy/paste typo in test titles --- test/branches/branches.test.js | 2 +- test/branches/get-tags.test.js | 2 +- test/get-config.test.js | 78 ++++++++++++++++----------------- test/get-last-release.test.js | 2 +- test/get-release-to-add.test.js | 4 +- 5 files changed, 44 insertions(+), 44 deletions(-) diff --git a/test/branches/branches.test.js b/test/branches/branches.test.js index 3432b5e84b..56b4060b6e 100644 --- a/test/branches/branches.test.js +++ b/test/branches/branches.test.js @@ -135,7 +135,7 @@ test('Enforce ranges with branching release workflow', async t => { t.is( getBranch(result, '1.0.x').range, '>=1.0.1 <1.0.2', - 'Cannot release on 1.0.x before 1.0.x version = require(master are merged' + 'Cannot release on 1.0.x before 1.0.x version from master are merged' ); t.is(getBranch(result, '1.x').range, '>=1.1.0 <1.0.2', 'Cannot release on 1.x before >= 2.0.0 is released on master'); diff --git a/test/branches/get-tags.test.js b/test/branches/get-tags.test.js index 171c66df9e..aff719ca69 100644 --- a/test/branches/get-tags.test.js +++ b/test/branches/get-tags.test.js @@ -28,7 +28,7 @@ test('Get the valid tags', async t => { ]); }); -test('Get the valid tags = require(multiple branches', async t => { +test('Get the valid tags from multiple branches', async t => { const {cwd} = await gitRepo(); await gitCommits(['First'], {cwd}); await gitTagVersion('v1.0.0', undefined, {cwd}); diff --git a/test/get-config.test.js b/test/get-config.test.js index 101f3e59fe..52a524ea6b 100644 --- a/test/get-config.test.js +++ b/test/get-config.test.js @@ -20,7 +20,7 @@ test.beforeEach(t => { t.context.getConfig = proxyquire('../lib/get-config', {'./plugins': t.context.plugins}); }); -test('Default values, reading repositoryUrl = require(package.json', async t => { +test('Default values, reading repositoryUrl from package.json', async t => { const pkg = {repository: 'https://host.null/owner/package.git'}; // Create a git repository, set the current working directory at the root of the repo const {cwd} = await gitRepo(true); @@ -47,7 +47,7 @@ test('Default values, reading repositoryUrl = require(package.json', async t => t.is(result.tagFormat, `v\${version}`); }); -test('Default values, reading repositoryUrl = require(repo if not set in package.json', async t => { +test('Default values, reading repositoryUrl from repo if not set in package.json', async t => { // Create a git repository, set the current working directory at the root of the repo const {cwd} = await gitRepo(true); // Add remote.origin.url config @@ -68,7 +68,7 @@ test('Default values, reading repositoryUrl = require(repo if not set in package t.is(result.tagFormat, `v\${version}`); }); -test('Default values, reading repositoryUrl (http url) = require(package.json if not set in repo', async t => { +test('Default values, reading repositoryUrl (http url) from package.json if not set in repo', async t => { const pkg = {repository: 'https://host.null/owner/module.git'}; // Create a git repository, set the current working directory at the root of the repo const {cwd} = await gitRepo(); @@ -102,7 +102,7 @@ test('Convert "ci" option to "noCi"', async t => { t.is(result.noCi, true); }); -test('Read options = require(package.json', async t => { +test('Read options from package.json', async t => { // Create a git repository, set the current working directory at the root of the repo const {cwd} = await gitRepo(); const options = { @@ -119,13 +119,13 @@ test('Read options = require(package.json', async t => { const {options: result} = await t.context.getConfig({cwd}); const expected = {...options, branches: ['test_branch']}; - // Verify the options contains the plugin config = require(package.json + // Verify the options contains the plugin config from package.json t.deepEqual(result, expected); - // Verify the plugins module is called with the plugin options = require(package.json + // Verify the plugins module is called with the plugin options from package.json t.deepEqual(t.context.plugins.args[0][0], {options: expected, cwd}); }); -test('Read options = require(.releaserc.yml', async t => { +test('Read options from .releaserc.yml', async t => { // Create a git repository, set the current working directory at the root of the repo const {cwd} = await gitRepo(); const options = { @@ -141,13 +141,13 @@ test('Read options = require(.releaserc.yml', async t => { const {options: result} = await t.context.getConfig({cwd}); const expected = {...options, branches: ['test_branch']}; - // Verify the options contains the plugin config = require(package.json + // Verify the options contains the plugin config from package.json t.deepEqual(result, expected); - // Verify the plugins module is called with the plugin options = require(package.json + // Verify the plugins module is called with the plugin options from package.json t.deepEqual(t.context.plugins.args[0][0], {options: expected, cwd}); }); -test('Read options = require(.releaserc.json', async t => { +test('Read options from .releaserc.json', async t => { // Create a git repository, set the current working directory at the root of the repo const {cwd} = await gitRepo(); const options = { @@ -163,13 +163,13 @@ test('Read options = require(.releaserc.json', async t => { const {options: result} = await t.context.getConfig({cwd}); const expected = {...options, branches: ['test_branch']}; - // Verify the options contains the plugin config = require(package.json + // Verify the options contains the plugin config from package.json t.deepEqual(result, expected); - // Verify the plugins module is called with the plugin options = require(package.json + // Verify the plugins module is called with the plugin options from package.json t.deepEqual(t.context.plugins.args[0][0], {options: expected, cwd}); }); -test('Read options = require(.releaserc.js', async t => { +test('Read options from .releaserc.js', async t => { // Create a git repository, set the current working directory at the root of the repo const {cwd} = await gitRepo(); const options = { @@ -185,13 +185,13 @@ test('Read options = require(.releaserc.js', async t => { const {options: result} = await t.context.getConfig({cwd}); const expected = {...options, branches: ['test_branch']}; - // Verify the options contains the plugin config = require(package.json + // Verify the options contains the plugin config from package.json t.deepEqual(result, expected); - // Verify the plugins module is called with the plugin options = require(package.json + // Verify the plugins module is called with the plugin options from package.json t.deepEqual(t.context.plugins.args[0][0], {options: expected, cwd}); }); -test('Read options = require(release.config.js', async t => { +test('Read options from release.config.js', async t => { // Create a git repository, set the current working directory at the root of the repo const {cwd} = await gitRepo(); const options = { @@ -207,9 +207,9 @@ test('Read options = require(release.config.js', async t => { const {options: result} = await t.context.getConfig({cwd}); const expected = {...options, branches: ['test_branch']}; - // Verify the options contains the plugin config = require(package.json + // Verify the options contains the plugin config from package.json t.deepEqual(result, expected); - // Verify the plugins module is called with the plugin options = require(package.json + // Verify the plugins module is called with the plugin options from package.json t.deepEqual(t.context.plugins.args[0][0], {options: expected, cwd}); }); @@ -237,13 +237,13 @@ test('Prioritise CLI/API parameters over file configuration and git repo', async const result = await t.context.getConfig({cwd}, options); const expected = {...options, branches: ['branch_cli']}; - // Verify the options contains the plugin config = require(CLI/API + // Verify the options contains the plugin config from CLI/API t.deepEqual(result.options, expected); - // Verify the plugins module is called with the plugin options = require(CLI/API + // Verify the plugins module is called with the plugin options from CLI/API t.deepEqual(t.context.plugins.args[0][0], {options: expected, cwd}); }); -test('Read configuration = require(file path in "extends"', async t => { +test('Read configuration from file path in "extends"', async t => { // Create a git repository, set the current working directory at the root of the repo const {cwd} = await gitRepo(); const pkgOptions = {extends: './shareable.json'}; @@ -262,9 +262,9 @@ test('Read configuration = require(file path in "extends"', async t => { const {options: result} = await t.context.getConfig({cwd}); const expected = {...options, branches: ['test_branch']}; - // Verify the options contains the plugin config = require(shareable.json + // Verify the options contains the plugin config from shareable.json t.deepEqual(result, expected); - // Verify the plugins module is called with the plugin options = require(shareable.json + // Verify the plugins module is called with the plugin options from shareable.json t.deepEqual(t.context.plugins.args[0][0], {options: expected, cwd}); t.deepEqual(t.context.plugins.args[0][1], { analyzeCommits: './shareable.json', @@ -274,7 +274,7 @@ test('Read configuration = require(file path in "extends"', async t => { }); }); -test('Read configuration = require(module path in "extends"', async t => { +test('Read configuration from module path in "extends"', async t => { // Create a git repository, set the current working directory at the root of the repo const {cwd} = await gitRepo(); const pkgOptions = {extends: 'shareable'}; @@ -293,9 +293,9 @@ test('Read configuration = require(module path in "extends"', async t => { const {options: result} = await t.context.getConfig({cwd}); const expected = {...options, branches: ['test_branch']}; - // Verify the options contains the plugin config = require(shareable.json + // Verify the options contains the plugin config from shareable.json t.deepEqual(result, expected); - // Verify the plugins module is called with the plugin options = require(shareable.json + // Verify the plugins module is called with the plugin options from shareable.json t.deepEqual(t.context.plugins.args[0][0], {options: expected, cwd}); t.deepEqual(t.context.plugins.args[0][1], { analyzeCommits: 'shareable', @@ -303,7 +303,7 @@ test('Read configuration = require(module path in "extends"', async t => { }); }); -test('Read configuration = require(an array of paths in "extends"', async t => { +test('Read configuration from an array of paths in "extends"', async t => { // Create a git repository, set the current working directory at the root of the repo const {cwd} = await gitRepo(); const pkgOptions = {extends: ['./shareable1.json', './shareable2.json']}; @@ -329,9 +329,9 @@ test('Read configuration = require(an array of paths in "extends"', async t => { const {options: result} = await t.context.getConfig({cwd}); const expected = {...options1, ...options2, branches: ['test_branch']}; - // Verify the options contains the plugin config = require(shareable1.json and shareable2.json + // Verify the options contains the plugin config from shareable1.json and shareable2.json t.deepEqual(result, expected); - // Verify the plugins module is called with the plugin options = require(shareable1.json and shareable2.json + // Verify the plugins module is called with the plugin options from shareable1.json and shareable2.json t.deepEqual(t.context.plugins.args[0][0], {options: expected, cwd}); t.deepEqual(t.context.plugins.args[0][1], { verifyRelease1: './shareable1.json', @@ -342,7 +342,7 @@ test('Read configuration = require(an array of paths in "extends"', async t => { }); }); -test('Prioritize configuration = require(config file over "extends"', async t => { +test('Prioritize configuration from config file over "extends"', async t => { // Create a git repository, set the current working directory at the root of the repo const {cwd} = await gitRepo(); const pkgOptions = { @@ -367,9 +367,9 @@ test('Prioritize configuration = require(config file over "extends"', async t => const {options: result} = await t.context.getConfig({cwd}); const expected = omit({...options1, ...pkgOptions, branches: ['test_pkg']}, 'extends'); - // Verify the options contains the plugin config = require(package.json and shareable.json + // Verify the options contains the plugin config from package.json and shareable.json t.deepEqual(result, expected); - // Verify the plugins module is called with the plugin options = require(package.json and shareable.json + // Verify the plugins module is called with the plugin options from package.json and shareable.json t.deepEqual(t.context.plugins.args[0][0], {options: expected, cwd}); t.deepEqual(t.context.plugins.args[0][1], { analyzeCommits: './shareable.json', @@ -378,7 +378,7 @@ test('Prioritize configuration = require(config file over "extends"', async t => }); }); -test('Prioritize configuration = require(cli/API options over "extends"', async t => { +test('Prioritize configuration from cli/API options over "extends"', async t => { // Create a git repository, set the current working directory at the root of the repo const {cwd} = await gitRepo(); const cliOptions = { @@ -415,9 +415,9 @@ test('Prioritize configuration = require(cli/API options over "extends"', async const {options: result} = await t.context.getConfig({cwd}, cliOptions); const expected = omit({...options2, ...pkgOptions, ...cliOptions, branches: ['branch_opts']}, 'extends'); - // Verify the options contains the plugin config = require(package.json and shareable2.json + // Verify the options contains the plugin config from package.json and shareable2.json t.deepEqual(result, expected); - // Verify the plugins module is called with the plugin options = require(package.json and shareable2.json + // Verify the plugins module is called with the plugin options from package.json and shareable2.json t.deepEqual(t.context.plugins.args[0][0], {options: expected, cwd}); }); @@ -443,13 +443,13 @@ test('Allow to unset properties defined in shareable config with "null"', async const {options} = await t.context.getConfig({cwd}); - // Verify the options contains the plugin config = require(shareable.json and the default `plugins` + // Verify the options contains the plugin config from shareable.json and the default `plugins` t.deepEqual(options, { ...omit(options1, ['analyzeCommits']), ...omit(pkgOptions, ['extends', 'analyzeCommits']), plugins: DEFAULT_PLUGINS, }); - // Verify the plugins module is called with the plugin options = require(shareable.json and the default `plugins` + // Verify the plugins module is called with the plugin options from shareable.json and the default `plugins` t.deepEqual(t.context.plugins.args[0][0], { options: { ...omit(options1, 'analyzeCommits'), @@ -492,9 +492,9 @@ test('Allow to unset properties defined in shareable config with "undefined"', a ...omit(pkgOptions, ['extends', 'analyzeCommits']), branches: ['test_branch'], }; - // Verify the options contains the plugin config = require(shareable.json + // Verify the options contains the plugin config from shareable.json t.deepEqual(result, expected); - // Verify the plugins module is called with the plugin options = require(shareable.json + // Verify the plugins module is called with the plugin options from shareable.json t.deepEqual(t.context.plugins.args[0][0], {options: expected, cwd}); t.deepEqual(t.context.plugins.args[0][1], { generateNotes: './shareable.json', diff --git a/test/get-last-release.test.js b/test/get-last-release.test.js index a3d664ed92..b7b7339351 100644 --- a/test/get-last-release.test.js +++ b/test/get-last-release.test.js @@ -18,7 +18,7 @@ test('Get the highest non-prerelease valid tag', t => { t.deepEqual(result, {version: '2.0.0', gitTag: 'v2.0.0', name: 'v2.0.0', gitHead: 'v2.0.0', channels: undefined}); }); -test('Get the highest prerelease valid tag, ignoring other tags = require(other prerelease channels', t => { +test('Get the highest prerelease valid tag, ignoring other tags from other prerelease channels', t => { const result = getLastRelease({ branch: { name: 'beta', diff --git a/test/get-release-to-add.test.js b/test/get-release-to-add.test.js index edadf1b150..21340e4535 100644 --- a/test/get-release-to-add.test.js +++ b/test/get-release-to-add.test.js @@ -1,7 +1,7 @@ const test = require('ava'); const getReleaseToAdd = require('../lib/get-release-to-add'); -test('Return versions merged = require(release to maintenance branch, excluding lower than branch start range', t => { +test('Return versions merged from release to maintenance branch, excluding lower than branch start range', t => { const result = getReleaseToAdd({ branch: { name: '2.x', @@ -188,7 +188,7 @@ test('Ignore pre-release versions', t => { }); }); -test('Exclude versions merged = require(release to maintenance branch if they have the same "channel"', t => { +test('Exclude versions merged from release to maintenance branch if they have the same "channel"', t => { const result = getReleaseToAdd({ branch: { name: '2.x',