Skip to content

Commit df1a68e

Browse files
authored
Bump the uuid test fixture version to 100.0.0 (#1279)
* Initial plan * test: bump uuid fixture version * chore: remove temporary validation logs --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
1 parent 3a5786e commit df1a68e

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "uuid",
33
"publisher": "joaomoreno",
4-
"version": "1.0.0",
4+
"version": "100.0.0",
55
"engines": { "vscode": "*" }
66
}

src/test/package.test.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2428,7 +2428,7 @@ describe('ManifestProcessor', () => {
24282428
const root = fixture('uuid');
24292429

24302430
let manifest = JSON.parse(await fs.promises.readFile(path.join(root, 'package.json'), 'utf8'));
2431-
assert.deepStrictEqual(manifest.version, '1.0.0');
2431+
assert.deepStrictEqual(manifest.version, '100.0.0');
24322432

24332433
const processor = new ManifestProcessor(manifest, { version: '1.1.1', updatePackageJson: false });
24342434
const packageJson = {
@@ -2441,14 +2441,14 @@ describe('ManifestProcessor', () => {
24412441
assert.deepStrictEqual(processor.vsix.version, '1.1.1');
24422442

24432443
manifest = JSON.parse(await fs.promises.readFile(path.join(root, 'package.json'), 'utf8'));
2444-
assert.deepStrictEqual(manifest.version, '1.0.0');
2444+
assert.deepStrictEqual(manifest.version, '100.0.0');
24452445
});
24462446

24472447
it('should not bump package.json version in-memory when not using --no-update-package-json', async () => {
24482448
const root = fixture('uuid');
24492449

24502450
let manifest = JSON.parse(await fs.promises.readFile(path.join(root, 'package.json'), 'utf8'));
2451-
assert.deepStrictEqual(manifest.version, '1.0.0');
2451+
assert.deepStrictEqual(manifest.version, '100.0.0');
24522452

24532453
const processor = new ManifestProcessor(manifest, { version: '1.1.1' });
24542454
const packageJson = {
@@ -2457,11 +2457,11 @@ describe('ManifestProcessor', () => {
24572457
};
24582458

24592459
manifest = JSON.parse(await read(await processor.onFile(packageJson)));
2460-
assert.deepStrictEqual(manifest.version, '1.0.0');
2461-
assert.deepStrictEqual(processor.vsix.version, '1.0.0');
2460+
assert.deepStrictEqual(manifest.version, '100.0.0');
2461+
assert.deepStrictEqual(processor.vsix.version, '100.0.0');
24622462

24632463
manifest = JSON.parse(await fs.promises.readFile(path.join(root, 'package.json'), 'utf8'));
2464-
assert.deepStrictEqual(manifest.version, '1.0.0');
2464+
assert.deepStrictEqual(manifest.version, '100.0.0');
24652465
});
24662466

24672467
it('should not throw error for engine version with x (e.g. 1.95.x)', async () => {

0 commit comments

Comments
 (0)