chore(vscode): update to 1.53.2
These conflicts will be resolved in the following commits. We do it this way so that PR review is possible.
This commit is contained in:
@@ -8,8 +8,8 @@ import * as uuid from 'vs/base/common/uuid';
|
||||
suite('UUID', () => {
|
||||
test('generation', () => {
|
||||
const asHex = uuid.generateUuid();
|
||||
assert.equal(asHex.length, 36);
|
||||
assert.equal(asHex[14], '4');
|
||||
assert.strictEqual(asHex.length, 36);
|
||||
assert.strictEqual(asHex[14], '4');
|
||||
assert.ok(asHex[19] === '8' || asHex[19] === '9' || asHex[19] === 'a' || asHex[19] === 'b');
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user