Jed

Results 232 comments of Jed

Also, if the intent is to remove this behavior, deleting the tests is not enough. We should change the tests to explicitly _not_ support this.

If you can give me some tips to debug and test just one test at a time, I think I might be able to figure it out. Also, it's a...

Is [this where](https://github.com/editorconfig/editorconfig-core-test/blob/master/filetree/path_separator.in#L11-L15) the two Windows tests are written?

Or is [this](https://github.com/editorconfig/editorconfig-core-test/blob/master/filetree/CMakeLists.txt#L57-L64) where I should be looking?

These tests are pretty hard to read. I can't tell what the input/output is or what the expected value should be. Definitely not what I'm used to.

Yeah. I knew that. I'm just expecting to see something like: ```js expect(foo('bar')).toEqual('baz'); ``` Where it's very clear that `foo` is the function being tested, `"bar"` is the input and...

For example: ``` new_ec_test(windows_separator path_separator.in windows/separator "^[ \t\n\r]*$") ``` How do I read that?

If I navigate to the [`filetree`](https://github.com/editorconfig/editorconfig-core-test/tree/master/filetree) folder and run the following command: ``` editorconfig -f path_separator.in windows/separator ``` The output is: ``` key=value ``` Which I presume came from [`line...

I see, so it seems there actually is something wrong with the js core in that it shouldn't be accepting back slashes. That would make some sense. The regex above...

@xuhdev, I think it would make sense to document our ini-like format in something that sounds more like English than these tests so we don't have similar confusions now or...