Move assert.js into test/unit

This commit is contained in:
Alex Dima
2020-02-07 12:32:06 +01:00
parent 3ce3886428
commit 97f826b007
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -46,7 +46,7 @@
baseUrl: new URL('../../../src', baseUrl).href,
paths: {
'vs': new URL('../../../out/vs', baseUrl).href,
assert: new URL('../../assert.js', baseUrl).href,
assert: new URL('../assert.js', baseUrl).href,
sinon: new URL('../../../node_modules/sinon/pkg/sinon-1.17.7.js', baseUrl).href
}
});
+2 -2
View File
@@ -16,7 +16,7 @@
require.config({
baseUrl: '/out',
paths: {
assert: '/test/assert.js',
assert: '/test/unit/assert.js',
sinon: '/node_modules/sinon/pkg/sinon-1.17.7.js'
}
});
@@ -26,4 +26,4 @@
});
</script>
</body>
</html>
</html>