mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00

Source map has been standardized as ECMA426, with a developing test suite. Add an initial coverage of the source map tests. PR-URL: https://github.com/nodejs/node/pull/56436 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
6 lines
198 B
Python
6 lines
198 B
Python
import sys, os
|
|
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
|
import testpy
|
|
|
|
def GetConfiguration(context, root):
|
|
return testpy.ParallelTestConfiguration(context, root, 'test426')
|