mirror of
https://github.com/bitwarden/browser
synced 2025-12-26 21:23:34 +00:00
Add noImplicitAny to tsc compiler options (#86)
This commit is contained in:
@@ -168,7 +168,8 @@ describe('Lastpass CSV Importer', () => {
|
||||
expect(result.ciphers.length).toBeGreaterThan(0);
|
||||
|
||||
const cipher = result.ciphers.shift();
|
||||
for (const property in data.expected) {
|
||||
let property: keyof typeof data.expected;
|
||||
for (property in data.expected) {
|
||||
if (data.expected.hasOwnProperty(property)) {
|
||||
expect(cipher.hasOwnProperty(property)).toBe(true);
|
||||
expect(cipher[property]).toEqual(data.expected[property]);
|
||||
|
||||
Reference in New Issue
Block a user