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
No known key found for this signature in database
GPG key ID: 6E58D7B045760DA0
3 changed files with 3 additions and 3 deletions

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
}
});

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>