Enabling no-redundant-jsdoc for tslint

This commit is contained in:
Matt Bierner
2019-01-04 15:27:22 -08:00
parent 9d4e02e792
commit a131278f4a
20 changed files with 33 additions and 82 deletions

View File

@@ -17,11 +17,11 @@ suite('env-namespace', () => {
});
test('env is readonly', function () {
assert.throws(() => env.language = '234');
assert.throws(() => env.appRoot = '234');
assert.throws(() => env.appName = '234');
assert.throws(() => env.machineId = '234');
assert.throws(() => env.sessionId = '234');
assert.throws(() => (env as any).language = '234');
assert.throws(() => (env as any).appRoot = '234');
assert.throws(() => (env as any).appName = '234');
assert.throws(() => (env as any).machineId = '234');
assert.throws(() => (env as any).sessionId = '234');
});
});