summaryrefslogtreecommitdiff
path: root/packages/upgrade/test/context.test.js
blob: bbc887c2ae3ce6f0752060bb204c9436cb66cc31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import * as assert from 'node:assert/strict';
import { describe, it } from 'node:test';
import { getContext } from '../dist/index.js';

describe('context', () => {
	it('no arguments', async () => {
		const ctx = await getContext([]);
		assert.equal(ctx.version, 'latest');
		assert.equal(ctx.dryRun, undefined);
	});
	it('tag', async () => {
		const ctx = await getContext(['beta']);
		assert.equal(ctx.version, 'beta');
		assert.equal(ctx.dryRun, undefined);
	});
	it('dry run', async () => {
		const ctx = await getContext(['--dry-run']);
		assert.equal(ctx.dryRun, true);
	});
});