mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2026-03-13 15:21:15 +08:00
Fixed != to !== and ran npm run style
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { meterToFeet, feetToMeter } from "../MeterToFeetConversion";
|
||||
import { meterToFeet, feetToMeter } from '../MeterToFeetConversion'
|
||||
|
||||
describe('Testing conversion of Meter to Feet', () => {
|
||||
it('with feet value', () => {
|
||||
@@ -10,4 +10,4 @@ describe('Testing conversion of Feet to Meter', () => {
|
||||
it('with feet value', () => {
|
||||
expect(feetToMeter(10)).toBe(3.048)
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user