point-of-sales/pos-frontend/__test__/fire.test.jsx

15 lines
258 B
JavaScript

describe('Database 2', () => {
it('DB WORKS 2', () => {
// so do firebase
// and can optionally have a local index if needed
})
it('Hi', () => {
let x = "hi" == "hi"
let y = "hi2" == "hi"
console.log(x)
console.log(y)
})
})