We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7342ee8 commit c1878d1Copy full SHA for c1878d1
test/test_core.py
@@ -5875,13 +5875,16 @@ def test_fs_64bit(self):
5875
self.do_runf('fs/test_64bit.c', 'success')
5876
5877
@requires_node
5878
+ @crossplatform
5879
@parameterized({
5880
'': ([],),
5881
'nodefs': (['-DNODEFS', '-lnodefs.js'],),
5882
'noderawfs': (['-sNODERAWFS'],),
5883
})
5884
def test_fs_symlink_resolution(self, args):
5885
nodefs = '-DNODEFS' in args or '-sNODERAWFS' in args
5886
+ if nodefs and WINDOWS:
5887
+ self.skipTest('No symlinks on Windows')
5888
if self.get_setting('WASMFS'):
5889
if nodefs:
5890
self.skipTest('NODEFS in WasmFS')
0 commit comments