test('should be false if the string does not end with the given pattern', function (done) {
    test.equal(startsWith('a/b/c.txt', 'b/c'), false)
    test.equal(startsWith('a/b/c.txt', '/b/c.tx'), false)
    done()
  })