Files
2025-07-24 17:21:45 +08:00

13 lines
201 B
JavaScript

/* eslint-env mocha */
'use strict'
describe('FirefoxLauncher', function () {
it('works', function () {
const result = 1 + 1
if (result !== 2) {
throw new Error('fail')
}
})
})