Skip to content

Commit

Permalink
test: fix copy/paste typo in test titles
Browse files Browse the repository at this point in the history
  • Loading branch information
pvdlg committed Jan 28, 2020
1 parent c7e461d commit bc97537
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 44 deletions.
2 changes: 1 addition & 1 deletion test/branches/branches.test.js
Expand Up @@ -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');

Expand Down
2 changes: 1 addition & 1 deletion test/branches/get-tags.test.js
Expand Up @@ -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});
Expand Down
78 changes: 39 additions & 39 deletions test/get-config.test.js
Expand Up @@ -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);
Expand All @@ -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
Expand All @@ -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();
Expand Down Expand Up @@ -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 = {
Expand All @@ -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 = {
Expand All @@ -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 = {
Expand All @@ -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 = {
Expand All @@ -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 = {
Expand All @@ -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});
});

Expand Down Expand Up @@ -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'};
Expand All @@ -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',
Expand All @@ -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'};
Expand All @@ -293,17 +293,17 @@ 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',
generateNotes: 'shareable',
});
});

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']};
Expand All @@ -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',
Expand All @@ -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 = {
Expand All @@ -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',
Expand All @@ -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 = {
Expand Down Expand Up @@ -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});
});

Expand All @@ -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'),
Expand Down Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion test/get-last-release.test.js
Expand Up @@ -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',
Expand Down
4 changes: 2 additions & 2 deletions 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',
Expand Down Expand Up @@ -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',
Expand Down

0 comments on commit bc97537

Please sign in to comment.